zsh-workers
 help / color / mirror / code / Atom feed
6cfebf420a7f85cfff2c3ca25f690dcbbb1c5b80 blob 1297 bytes (raw)

 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
43
44
45
46
47
48
49
50
51
 
#compdef rcctl

local context state line
local -a actions lsarg subcmds variables

actions=(check reload restart start stop)
subcmds=(disable enable get getdef ls order set)
variables=(class flags status timeout user)
lsarg=(
  'all:all services and daemons'
  'failed:enabled but stopped daemons'
  'off:disabled services and daemons'
  'on:enabled services and daemons'
  'rogue:daemons which are disabled but currently running'
  'started:running daemons'
  'stopped:stopped daemons'
)

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:(($lsarg))'
    ;;
  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
debug log:

solving 6cfebf420 ...
found 6cfebf420 in https://git.vuxu.org/mirror/zsh/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).