blob: 0a030f4864d71a413f63109693fb5ad93675eb1f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#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 faulty 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
|