Bug 1024581
Summary: | keystone missing tab completion | ||
---|---|---|---|
Product: | [Community] RDO | Reporter: | Mohammed Arafa <bugzilla> |
Component: | python-keystoneclient | Assignee: | Jakub Ruzicka <jruzicka> |
Status: | CLOSED CURRENTRELEASE | QA Contact: | yeylon <yeylon> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | unspecified | CC: | apevec, ayoung, jruzicka, srevivo, yeylon |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | python-keystoneclient-0.4.1-4 | Doc Type: | Bug Fix |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2016-03-30 23:05:33 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Mohammed Arafa
2013-10-30 01:53:23 UTC
python-keystoneclient includes completion but under /etc/bash_completion.d/ and you need to have bash-completion RPM installed to get that sourced by default. Putting completion files under /etc/profile.d/ in other packages is to avoid dependency on bash-completion which isn't in RHEL baseOS, it's an EPEL package. Jakub, please make all *client consistent in el6 RDO in that regard. @alan you mean remove the dependency on bash-completion by putting them in /etc/profile.d Actually, moving them to /etc/profile.d is bad and evil, because it's bash specific code but /etc/profile.d is share amongst the shell so for example when using zsh, you get ugly warning on shell start. Since there is bash-completion in EPEL, I'll make client packages depend on and use that in RDO. I moved the completion to /etc/profile.d for compatibility with other clients. I'll use bash-completion in 5.0+ in the future if possible. |