Fix podman inspect bash completions
Also fixed illegal function __podman_complete_detach_keys() Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #781 Approved by: baude
This commit is contained in:
parent
4eecbdbf11
commit
50667124ee
|
@ -1,3 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
: ${PROG:=$(basename ${BASH_SOURCE})}
|
: ${PROG:=$(basename ${BASH_SOURCE})}
|
||||||
|
|
||||||
__podman_previous_extglob_setting=$(shopt -p extglob)
|
__podman_previous_extglob_setting=$(shopt -p extglob)
|
||||||
|
@ -405,20 +406,20 @@ __podman_complete_capabilities() {
|
||||||
" -- "$cur" ) )
|
" -- "$cur" ) )
|
||||||
}
|
}
|
||||||
|
|
||||||
__podman_complete_detach-keys() {
|
__podman_complete_detach_keys() {
|
||||||
case "$prev" in
|
case "$prev" in
|
||||||
--detach-keys)
|
--detach-keys)
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
*,)
|
*,)
|
||||||
COMPREPLY=( $( compgen -W "${cur}ctrl-" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "${cur}ctrl-" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
COMPREPLY=( $( compgen -W "ctrl-" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "ctrl-" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
__podman_nospace
|
__podman_nospace
|
||||||
return
|
return 0
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
return 1
|
return 1
|
||||||
|
@ -912,30 +913,57 @@ _podman_inspect() {
|
||||||
--size
|
--size
|
||||||
"
|
"
|
||||||
|
|
||||||
local all_options="$options_with_args $boolean_options"
|
local all_options="$options_with_args $boolean_options"
|
||||||
|
|
||||||
case "$cur" in
|
local preselected_type
|
||||||
-*)
|
local type
|
||||||
COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur"))
|
|
||||||
;;
|
if [ "$1" = "--type" ] ; then
|
||||||
*)
|
preselected_type=yes
|
||||||
case "$type" in
|
type="$2"
|
||||||
'')
|
else
|
||||||
COMPREPLY=( $( compgen -W "
|
type=$(__podman_value_of_option --type)
|
||||||
$(__podman_complete_container_names)
|
fi
|
||||||
$(__podman_complete_images)
|
|
||||||
" -- "$cur" ) )
|
case "$prev" in
|
||||||
;;
|
--format|-f)
|
||||||
container)
|
return
|
||||||
__podman_complete_container_names
|
;;
|
||||||
;;
|
--type)
|
||||||
images)
|
if [ -z "$preselected_type" ] ; then
|
||||||
__podman_complete_images
|
COMPREPLY=( $( compgen -W "container image" -- "$cur" ) )
|
||||||
;;
|
return
|
||||||
esac
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
case "$cur" in
|
||||||
|
-*)
|
||||||
|
local options="--format -f --help --size -s"
|
||||||
|
if [ -z "$preselected_type" ] ; then
|
||||||
|
options+=" --type"
|
||||||
|
fi
|
||||||
|
COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
case "$type" in
|
||||||
|
'')
|
||||||
|
COMPREPLY=( $( compgen -W "
|
||||||
|
$(__podman_containers --all)
|
||||||
|
$(__podman_images --force-tag --id)
|
||||||
|
" -- "$cur" ) )
|
||||||
|
__ltrim_colon_completions "$cur"
|
||||||
|
;;
|
||||||
|
container)
|
||||||
|
__podman_complete_containers_all
|
||||||
|
;;
|
||||||
|
image)
|
||||||
|
__podman_complete_images --force-tag --id
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
_podman_kill() {
|
_podman_kill() {
|
||||||
local options_with_args="
|
local options_with_args="
|
||||||
--signal -s
|
--signal -s
|
||||||
|
@ -1185,7 +1213,7 @@ _podman_container_run() {
|
||||||
--rm
|
--rm
|
||||||
--sig-proxy=false
|
--sig-proxy=false
|
||||||
"
|
"
|
||||||
__podman_complete_detach-keys && return
|
__podman_complete_detach_keys && return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
|
|
Loading…
Reference in New Issue