diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-05 05:25:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-05 06:19:27 +0000 |
commit | db50ab50085f35952f49d4b7c009e1303862d965 (patch) | |
tree | e8d9a98681a23d57c52d6cc755976a8f7430c505 /share/bash-completion | |
parent | Using variables in directory paths in container key command. (diff) | |
download | compute-tools-db50ab50085f35952f49d4b7c009e1303862d965.tar.xz compute-tools-db50ab50085f35952f49d4b7c009e1303862d965.zip |
Adding default interactive mode for container stop command.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rw-r--r-- | share/bash-completion/container | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index 8a1f43d..e08b7f8 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -257,7 +257,7 @@ _container() ;; *) - opts="-n --name -f --force" + opts="-n --name -f --force -i --interactive" COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;; |