diff options
Diffstat (limited to 'completions')
-rw-r--r-- | completions/bash/podman | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index ae7db9f6d..4313fe94f 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1001,7 +1001,6 @@ _podman_mount() { " local options_with_args=" - --label --format " @@ -1314,6 +1313,16 @@ _podman_run() { _podman_container_run } +_podman_restart() { + local options_with_args=" + --timeout -t + " + local boolean_options=" + --latest + -l" + _complete_ "$options_with_args" "$boolean_options" +} + _podman_rm() { local boolean_options=" --all @@ -1609,6 +1618,7 @@ _podman_podman() { ps pull push + restart rm rmi run |