X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=shell-completion%2Fbash%2Fhostnamectl;h=a5e34600c806a07b42fe573e2e6bd7e4343998f0;hb=ccb03ac39d5360433e62b8b82e474aa044421bd9;hp=38ab1344f3f31ee67faaed3cf7293623bc3168e5;hpb=a72d698d0d9ff9c158155b44cdc77376df31a317;p=elogind.git diff --git a/shell-completion/bash/hostnamectl b/shell-completion/bash/hostnamectl index 38ab1344f..a5e34600c 100644 --- a/shell-completion/bash/hostnamectl +++ b/shell-completion/bash/hostnamectl @@ -38,10 +38,11 @@ _hostnamectl() { local -A VERBS=( [STANDALONE]='status' [ICONS]='set-icon-name' - [NAME]='set-hostname' + [NAME]='set-hostname set-deployment' + [CHASSIS]='set-chassis' ) - for ((i=0; i <= COMP_CWORD; i++)); do + for ((i=0; i < COMP_CWORD; i++)); do if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]}; then verb=${COMP_WORDS[i]} break @@ -50,6 +51,8 @@ _hostnamectl() { if [[ -z $verb ]]; then comps=${VERBS[*]} + elif __contains_word "$verb" ${VERBS[CHASSIS]}; then + comps='desktop laptop server tablet handset watch vm container' elif __contains_word "$verb" ${VERBS[STANDALONE]} ${VERBS[ICONS]} ${VERBS[NAME]}; then comps='' fi