diff options
author | Luca Boccassi <bluca@debian.org> | 2024-04-18 18:15:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-18 18:15:20 +0200 |
commit | b84a0bf3ab4e0207c69dff4c8eb7704a5a74ffd5 (patch) | |
tree | 76ead939191ede6f87281e31ff7a7db92100f0ca /shell-completion | |
parent | man/systemd-stub: fix typo (diff) | |
parent | bash completion: add missing parameters for portablectl (diff) | |
download | systemd-b84a0bf3ab4e0207c69dff4c8eb7704a5a74ffd5.tar.xz systemd-b84a0bf3ab4e0207c69dff4c8eb7704a5a74ffd5.zip |
Merge pull request #32144 from bluca/portable_clean
portablectl: add --clean parameter for detaching
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/bash/portablectl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell-completion/bash/portablectl b/shell-completion/bash/portablectl index 61a9610aa3..8d88ab46bc 100644 --- a/shell-completion/bash/portablectl +++ b/shell-completion/bash/portablectl @@ -36,7 +36,8 @@ _portablectl() { local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} local -A OPTS=( [STANDALONE]='-q --quiet --runtime --no-reload --cat --no-pager --no-legend - --no-ask-password --enable --now -h --help --version' + --no-ask-password --enable --now -h --help --version + --clean --no-block --force' [ARG]='-p --profile --copy -H --host -M --machine --extension' ) |