mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
42 lines
1 KiB
Text
42 lines
1 KiB
Text
#compdef rcctl
|
|
|
|
local context state line
|
|
local -a actions subcmds variables
|
|
|
|
actions=(check reload restart start stop)
|
|
subcmds=(disable enable get getdef ls order set)
|
|
variables=(class flags status timeout user)
|
|
|
|
if [[ $service == "rcctl" ]]; then
|
|
_arguments -C \
|
|
'-d[print debug information]' \
|
|
'-f[forcibly start the daemon]' \
|
|
':subcommand:('"$actions ${${${+words[(r)-[df]]}#1}/0/$subcmds}"\) \
|
|
'*:: :->subcmd' && return
|
|
service="$words[1]"
|
|
fi
|
|
|
|
case $service in
|
|
get|getdef)
|
|
_arguments \
|
|
':service:_services' \
|
|
':variable:compadd -a variables'
|
|
;;
|
|
ls)
|
|
_arguments ':display a list of services and daemons matching:(all failed off on started stopped)'
|
|
;;
|
|
order)
|
|
_arguments \
|
|
':service to start first:_services'
|
|
'*:service to start next:_services'
|
|
;;
|
|
set)
|
|
_arguments \
|
|
':service:_services' \
|
|
':variable:compadd -a variables' \
|
|
'*:argument:'
|
|
;;
|
|
${(~j:|:)actions}|disable|enable)
|
|
_arguments "*:service to $words[2]:_services"
|
|
;;
|
|
esac
|