diff options
author | Alessandro Puccetti <alessandro@kinvolk.io> | 2016-07-08 17:44:20 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-07-08 17:44:20 +0200 |
commit | 14ca5c9cb47f85a4064d008a1c006aea27f84309 (patch) | |
tree | be4bbda7879410b85d215574ed8fa3b6555aabb9 /shell-completion/bash | |
parent | f3bc4ccc2edf5ad2a99d6ba2795b9999fe76c3df (diff) |
nspawn-completion: implementation of shell completion of --notify-ready (#3679)
Relative to: https://github.com/systemd/systemd/pull/3474
Diffstat (limited to 'shell-completion/bash')
-rw-r--r-- | shell-completion/bash/systemd-nspawn | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/shell-completion/bash/systemd-nspawn b/shell-completion/bash/systemd-nspawn index 0cf249d8ce..ea4a5e1f43 100644 --- a/shell-completion/bash/systemd-nspawn +++ b/shell-completion/bash/systemd-nspawn @@ -60,7 +60,8 @@ _systemd_nspawn() { [ARG]='-D --directory -u --user --uuid --capability --drop-capability --link-journal --bind --bind-ro -M --machine -S --slice --setenv -Z --selinux-context -L --selinux-apifs-context --register --network-interface --network-bridge --personality -i --image --tmpfs --volatile - --network-macvlan --kill-signal --template' + --network-macvlan --kill-signal --template + --notify-ready' ) _init_completion || return @@ -139,6 +140,10 @@ _systemd_nspawn() { _signals return ;; + --notify-ready) + comps='yes no' + return + ;; esac COMPREPLY=( $(compgen -W '$comps' -- "$cur") ) return 0 |