luseradd,lusermod,luserdel: New completions.

master
Ville Skyttä 2012-12-28 14:07:34 +02:00
parent 1d75b671a0
commit 08203f7743
10 changed files with 128 additions and 0 deletions

View File

@ -71,6 +71,7 @@ ldapmodrdn
ldappasswd
ldapwhoami
lintian-info
lusermod
lvchange
lvcreate
lvdisplay

View File

@ -179,6 +179,8 @@ bashcomp_DATA = a2x \
lpr \
lrzip \
lsof \
luseradd \
luserdel \
lvm \
lzip \
lzma \
@ -441,6 +443,7 @@ CLEANFILES = \
ldappasswd \
ldapwhoami \
lintian-info \
lusermod \
lvchange \
lvcreate \
lvdisplay \
@ -684,6 +687,10 @@ symlinks: $(targetdir) $(DATA)
rm -f $(targetdir)/$$file && \
$(LN_S) lintian $(targetdir)/$$file ; \
done
for file in lusermod ; do \
rm -f $(targetdir)/$$file && \
$(LN_S) luseradd $(targetdir)/$$file ; \
done
for file in lvmdiskscan pvscan pvs pvdisplay pvchange pvcreate pvmove \
pvremove vgscan vgs vgdisplay vgchange vgremove vgrename \
vgreduce vgextend vgimport vgexport vgck vgconvert vgcreate \

40
completions/luseradd Normal file
View File

@ -0,0 +1,40 @@
# luseradd(1) and lusermod(1) completion -*- shell-script -*-
_luseradd()
{
local cur prev words cword split
_init_completion -s || return
case $prev in
-\?|--help|--usage|-c|--gecos|-u|--uid|-l|--login|-P|--plainpassword|\
-p|--password|--commonname|--givenname|--surname|--roomnumber|\
--telephonenumber|--homephone)
return
;;
-d|--directory|-k|--skeleton)
_filedir -d
return
;;
-s|--shell)
_shells
return
;;
-g|--gid)
_gids
return
;;
esac
$split && return
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
[[ $COMPREPLY == *= ]] && compopt -o nospace
return
fi
[[ ${1##*/} == luseradd ]] || COMPREPLY=( $( compgen -u -- "$cur" ) )
} &&
complete -F _luseradd luseradd lusermod
# ex: ts=4 sw=4 et filetype=sh

23
completions/luserdel Normal file
View File

@ -0,0 +1,23 @@
# luserdel(1) completion -*- shell-script -*-
_luserdel()
{
local cur prev words cword
_init_completion || return
case $prev in
-\?|--help|--usage)
return
;;
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
return
fi
COMPREPLY=( $( compgen -u -- "$cur" ) )
} &&
complete -F _luserdel luserdel
# ex: ts=4 sw=4 et filetype=sh

View File

@ -0,0 +1 @@
assert_source_completions luseradd

View File

@ -0,0 +1 @@
assert_source_completions luserdel

View File

@ -0,0 +1 @@
assert_source_completions lusermod

View File

@ -0,0 +1,18 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "luseradd -"
sync_after_int
teardown

View File

@ -0,0 +1,18 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "luserdel "
sync_after_int
teardown

View File

@ -0,0 +1,18 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "lusermod "
sync_after_int
teardown