aboutsummaryrefslogtreecommitdiff
path: root/completions
diff options
context:
space:
mode:
authorzhangguanzhang <zhangguanzhang@qq.com>2020-10-02 21:56:04 +0800
committerzhangguanzhang <zhangguanzhang@qq.com>2020-10-02 21:57:37 +0800
commit1492f3c936a0f6180db61a6500371aceebc37e39 (patch)
tree126ba7775a7ca86b8cc6e7d5edc9af3d73201e86 /completions
parentff3aa2b3d1b9765e0f09ed15dcf160065b54c889 (diff)
downloadpodman-1492f3c936a0f6180db61a6500371aceebc37e39.tar.gz
podman-1492f3c936a0f6180db61a6500371aceebc37e39.tar.bz2
podman-1492f3c936a0f6180db61a6500371aceebc37e39.zip
--rm option shold conflicts with --restart
Signed-off-by: zhangguanzhang <zhangguanzhang@qq.com>
Diffstat (limited to 'completions')
-rw-r--r--completions/bash/podman2
1 files changed, 1 insertions, 1 deletions
diff --git a/completions/bash/podman b/completions/bash/podman
index a83cfc790..e12862126 100644
--- a/completions/bash/podman
+++ b/completions/bash/podman
@@ -407,7 +407,7 @@ __podman_local_interfaces() {
__podman_complete_restart() {
case "$prev" in
--restart)
- COMPREPLY=( $( compgen -W "always no on-failure" -- "$cur") )
+ COMPREPLY=( $( compgen -W "always no on-failure unless-stopped" -- "$cur") )
return
;;
esac