From: Arthur Zamarin Date: Thu, 21 Dec 2023 21:23:13 +0000 (+0200) Subject: bash-completion: add missing option to systemd-confext X-Git-Tag: v256-rc1~1425^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F30575%2Fhead;p=thirdparty%2Fsystemd.git bash-completion: add missing option to systemd-confext Signed-off-by: Arthur Zamarin --- diff --git a/shell-completion/bash/systemd-confext b/shell-completion/bash/systemd-confext index c8eca3b2cbe..09d114611c5 100644 --- a/shell-completion/bash/systemd-confext +++ b/shell-completion/bash/systemd-confext @@ -30,9 +30,12 @@ _systemd-confext() { [STANDALONE]='-h --help --version --no-pager --no-legend + --no-reload --force' [ARG]='--root - --json' + --json + --noexec + --image-policy' ) local -A VERBS=( @@ -54,6 +57,12 @@ _systemd-confext() { --json) comps='pretty short off' ;; + --noexec) + comps='false true' + ;; + --image-policy) + comps='' + ;; esac COMPREPLY=( $(compgen -W '$comps' -- "$cur") ) return 0