Use _split_longopt in heimdal.
This commit is contained in:
parent
eea696d9cc
commit
4956b5fef5
6
CHANGES
6
CHANGES
@ -64,9 +64,9 @@ bash-completion (1.x)
|
||||
* Add _split_longopt() helper for improved handling of long options that
|
||||
take arguments in both "--foo bar" and "--foo=bar" formats.
|
||||
* Use _split_longopt to improve and clean up aspell, bluez-utils, chgrp,
|
||||
chown, chkconfig, cpio, dpkg, iptables, make, mc, mii-diag, mii-tool,
|
||||
mkinitrd, pkg-config, postgresql, quota, reportbug, samba, smartctl, yum,
|
||||
and generic long option completion (Alioth: #311398).
|
||||
chown, chkconfig, cpio, dpkg, heimdal, iptables, make, mc, mii-diag,
|
||||
mii-tool, mkinitrd, pkg-config, postgresql, quota, reportbug, samba,
|
||||
smartctl, yum, and generic long option completion (Alioth: #311398).
|
||||
* Add chown --from and --reference value completions.
|
||||
* Add chgrp --reference value completion.
|
||||
* Do not assume all --foo= options take filenames in generic long option
|
||||
|
@ -29,61 +29,38 @@ _heimdal_encodings()
|
||||
|
||||
_ktutil()
|
||||
{
|
||||
local cur prev command options
|
||||
local cur prev command options split=false
|
||||
|
||||
COMPREPLY=()
|
||||
cur=`_get_cword`
|
||||
prev=${COMP_WORDS[COMP_CWORD-1]}
|
||||
|
||||
_split_longopt && split=true
|
||||
|
||||
case $prev in
|
||||
-p)
|
||||
-p|--principal)
|
||||
_heimdal_principals
|
||||
return 0
|
||||
;;
|
||||
-e)
|
||||
-e|--enctype)
|
||||
_heimdal_encodings
|
||||
return 0
|
||||
;;
|
||||
-a)
|
||||
-a|--admin-server)
|
||||
_known_hosts
|
||||
return 0
|
||||
;;
|
||||
-r)
|
||||
-r|--realm)
|
||||
_heimdal_realms
|
||||
return 0
|
||||
;;
|
||||
-@(s|k))
|
||||
-@(s|k|-@(srv|key)tab))
|
||||
_filedir
|
||||
return 0
|
||||
;;
|
||||
esac
|
||||
|
||||
if [[ "$cur" == *=* ]]; then
|
||||
prev=${cur/=*/}
|
||||
cur=${cur/*=/}
|
||||
case "$prev" in
|
||||
--principal)
|
||||
_heimdal_principals
|
||||
return 0
|
||||
;;
|
||||
--enctype)
|
||||
_heimdal_encodings
|
||||
return 0
|
||||
;;
|
||||
--admin-server)
|
||||
_known_hosts
|
||||
return 0
|
||||
;;
|
||||
--realm)
|
||||
_heimdal_realms
|
||||
return 0
|
||||
;;
|
||||
--@(srv|key)tab)
|
||||
_filedir
|
||||
return 0
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
$split && return 0
|
||||
|
||||
commands='add change copy get list remove rename purge srvconvert \
|
||||
srv2keytab srvcreate key2srvtab'
|
||||
@ -105,34 +82,33 @@ _ktutil()
|
||||
if [[ "$cur" == -* ]]; then
|
||||
case $command in
|
||||
add)
|
||||
options='-p --principal= -V -e --enctype= -w \
|
||||
--password= -r --random -s --no-salt \
|
||||
options='-p --principal -V -e --enctype -w \
|
||||
--password -r --random -s --no-salt \
|
||||
-h --hex'
|
||||
;;
|
||||
change)
|
||||
options='-r --realm= -a --admin-server -s \
|
||||
--server-port='
|
||||
options='-r --realm -a --admin-server -s \
|
||||
--server-port'
|
||||
;;
|
||||
get)
|
||||
options='-p --principal= -e --enctype= -r \
|
||||
--realm= -a --admin-server= -s server \
|
||||
--server-port='
|
||||
options='-p --principal -e --enctype -r \
|
||||
--realm -a --admin-server -s server \
|
||||
--server-port'
|
||||
;;
|
||||
list)
|
||||
options='--keys --timestamp'
|
||||
;;
|
||||
remove)
|
||||
options='-p --principal= -V --kvno -e \
|
||||
--enctype='
|
||||
options='-p --principal -V --kvno -e --enctype'
|
||||
;;
|
||||
purge)
|
||||
options='--age='
|
||||
options='--age'
|
||||
;;
|
||||
@(srv2keytab|key2srvtab))
|
||||
options='-s --srvtab='
|
||||
options='-s --srvtab'
|
||||
;;
|
||||
*)
|
||||
options='-k --keytab= -v --verbose --version \
|
||||
options='-k --keytab -v --verbose --version \
|
||||
-v --help'
|
||||
;;
|
||||
esac
|
||||
|
Loading…
x
Reference in New Issue
Block a user