From: Yu Watanabe Date: Wed, 10 Jan 2018 07:01:58 +0000 (+0900) Subject: bash-completion: hostnamectl: add a missing option X-Git-Tag: v237~106^2~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=afcb2246be6eb77788616f6a78ae2cb1629f395b;p=thirdparty%2Fsystemd.git bash-completion: hostnamectl: add a missing option --- diff --git a/shell-completion/bash/hostnamectl b/shell-completion/bash/hostnamectl index a35ac7f9a0d..1b41603010c 100644 --- a/shell-completion/bash/hostnamectl +++ b/shell-completion/bash/hostnamectl @@ -29,7 +29,7 @@ _hostnamectl() { local i verb comps local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} local OPTS='-h --help --version --transient --static --pretty - --no-ask-password -H --host --machine' + --no-ask-password -H --host -M --machine' if [[ $cur = -* ]]; then COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )