From 8546a4af00b17471354e8874f4851d8ad9906ca1 Mon Sep 17 00:00:00 2001 From: Arthur Zamarin Date: Thu, 21 Dec 2023 23:23:13 +0200 Subject: [PATCH] bash-completion: add missing option to systemd-confext Signed-off-by: Arthur Zamarin --- shell-completion/bash/systemd-confext | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/shell-completion/bash/systemd-confext b/shell-completion/bash/systemd-confext index c8eca3b2cb..09d114611c 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