diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-12-04 13:49:25 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-04 23:48:22 +0000 |
commit | 9147a56a0179c92d9129c53cd13590aaa54a3d0f (patch) | |
tree | f6d1f9eda9fc674696729d6a0033b88428747cc9 /completions/bash | |
parent | 3db735c6d1bd3fdcf77f4aeed581ae852d79b951 (diff) | |
download | podman-9147a56a0179c92d9129c53cd13590aaa54a3d0f.tar.gz podman-9147a56a0179c92d9129c53cd13590aaa54a3d0f.tar.bz2 podman-9147a56a0179c92d9129c53cd13590aaa54a3d0f.zip |
Remove kpod rename
Libpod containers are immutable once created. They cannot be
renamed after created. As such remove kpod rename.
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #101
Approved by: baude
Diffstat (limited to 'completions/bash')
-rw-r--r-- | completions/bash/kpod | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/completions/bash/kpod b/completions/bash/kpod index 0901a231b..a5da95a3e 100644 --- a/completions/bash/kpod +++ b/completions/bash/kpod @@ -931,26 +931,6 @@ _kpod_push() { esac } -_kpod_rename() { - local boolean_options=" - --help - -h - " - local options_with_args=" - " - - local all_options="$options_with_args $boolean_options" - - case "$cur" in - -*) - COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) - ;; - *) - __kpod_list_containers - ;; - esac -} - _kpod_container_run() { local options_with_args=" --add-host |