diff options
author | umohnani8 <umohnani@redhat.com> | 2017-12-15 16:14:52 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-20 10:08:17 +0000 |
commit | 26a6e0de46f6fcc6c80a20068d0019b45465a28d (patch) | |
tree | bca94ecf461f0fedce13d0ebe4b26f76d7f8f6fb /completions/bash/podman | |
parent | 5da9fd4953ae4c0806fab2fbcee5767fe7b57467 (diff) | |
download | podman-26a6e0de46f6fcc6c80a20068d0019b45465a28d.tar.gz podman-26a6e0de46f6fcc6c80a20068d0019b45465a28d.tar.bz2 podman-26a6e0de46f6fcc6c80a20068d0019b45465a28d.zip |
Add podman commit command
podman commit allows the user to commit containers
as images with options of tagging th image, setting
a commit message, setting the auther, and making
changes to the instructions.
Signed-off-by: umohnani8 <umohnani@redhat.com>
Closes: #143
Approved by: rhatdan
Diffstat (limited to 'completions/bash/podman')
-rw-r--r-- | completions/bash/podman | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index ecf752de9..fd7fa99e2 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -657,6 +657,33 @@ _podman_attach() { _complete_ "$options_with_args" "$boolean_options" } +_podman_commit() { + local options_with_args=" + --author + -a + --change + -c + --message + -m + " + local boolean_options=" + --help + -h + --pause + -p + " + _complete_ "$options_with_args" "$boolean_options" + + case "$cur" in + -*) + COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) + ;; + *) + __podman_list_images + ;; + esac +} + _podman_diff() { local options_with_args=" --format @@ -1454,6 +1481,7 @@ _podman_podman() { " commands=" attach + commit create diff exec |