From 26a6e0de46f6fcc6c80a20068d0019b45465a28d Mon Sep 17 00:00:00 2001 From: umohnani8 Date: Fri, 15 Dec 2017 16:14:52 -0500 Subject: 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 Closes: #143 Approved by: rhatdan --- completions/bash/podman | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'completions/bash') 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 -- cgit v1.2.3-54-g00ecf