Clean up cfagent option completions.

This commit is contained in:
Ville Skyttä 2010-03-30 20:46:57 +03:00
parent 81d3c689a5
commit 6e373da8e1

View File

@ -3,16 +3,13 @@
have cfagent && {
_cfagent_options()
{
COMPREPLY=( $( compgen -W '-a --sysadm -b --force-net-copy -c \
--no-check-files -C --no-check-mounts -d --debug -D --define \
-e --no-edits -E --enforce-links -f --file -h --help -H \
--no-hard-classes -i --no-ifconfig -I --inform -k --no-copy \
-K --no-lock -l --traverse-links -L --delete-stale-links -m \
--no-mount -M --no-modules -n --recon --dry-run --just-print \
-N --negate --undefine -p --parse-only -P --no-processes -q \
--no-splay -s --no-commands -S --silent -t --no-tidy -u \
--use-env -U --underscore-classes -v --verbose -V --version \
-x --no-preconf -X --no-links -w --no-warn --quiet' -- "$cur" ) )
COMPREPLY=( $( compgen -W '--sysadm --force-net-copy --no-check-files \
--no-check-mounts --debug --define --no-edits --enforce-links --file \
--help --no-hard-classes --no-ifconfig --inform --no-copy --no-lock \
--traverse-links --delete-stale-links --no-mount --no-modules \
--dry-run --negate --parse-only --no-processes --no-splay \
--no-commands --silent --no-tidy --use-env --underscore-classes \
--verbose --version --no-preconf --no-links --quiet' -- "$cur" ) )
}
_cfagent()