mirror of
https://github.com/OpenRC/openrc.git
synced 2026-01-27 01:44:36 +00:00
Added missing options to the completion definition files for the rc-service, rc-status, and rc-update commands. (Including --user and -U): Added status to the cmd option for rc-service.
48 lines
1.5 KiB
Bash
48 lines
1.5 KiB
Bash
#compdef rc-update
|
|
|
|
_rc_actions() {
|
|
_values "actions" \
|
|
'add[Add the service to the runlevel or the current one if none given]' \
|
|
'del[Delete the service from the runlevel or the current one if none given]' \
|
|
'show[Show all enabled services and the runlevels they belong to]'
|
|
}
|
|
|
|
_rc_service() {
|
|
case $line[1] in
|
|
add)
|
|
_values "service" $(rc-service "${opt_args[(i)-U|--user]}" --list)
|
|
;;
|
|
del)
|
|
_values "service" ${=${(M)${(f)"$(rc-update ${opt_args[(i)-U|--user]} show 2>/dev/null)"}:#*|*[a-z]*}% |*}
|
|
;;
|
|
show)
|
|
_values "runlevels" $(rc-status "${opt_args[(i)-U|--user]}" --list)
|
|
_values "options" '(-v --verbose)'{-v,--verbose}'[Show all service scripts]'
|
|
;;
|
|
esac
|
|
}
|
|
|
|
_rc_runlevels() {
|
|
if [[ $line[1] == show ]]; then
|
|
_nothing
|
|
else
|
|
_values "runlevels" $(rc-status "${opt_args[(i)-U|--user]}" --list)
|
|
fi
|
|
}
|
|
|
|
_arguments -C -s \
|
|
'(-a --all)'{-a,--all}'[Process all runlevels]' \
|
|
'(-s --stack)'{-s,--stack}'[Stack a runlevel instead of a service]' \
|
|
'(-u --update)'{-u,--update}'[Force an update of the dependency tree]' \
|
|
'(- :)'{-h,--help}'[Display this help output]' \
|
|
'(-C --nocolor)'{-C,--nocolor}'[Disable color output]' \
|
|
'(- :)'{-V,--version}'[Display software version]' \
|
|
'(-v --verbose)'{-v,--verbose}'[Run verbosely]' \
|
|
'(-q --quiet)'{-q,--quiet}'[Run quietly (repeat to suppress errors)]' \
|
|
'(-U --user)'{-U,--user}'[Run in user mode]' \
|
|
'1:actions:_rc_actions' \
|
|
'2:service:_rc_service' \
|
|
'3:runlevels:_rc_runlevels'
|
|
|
|
# vim: set et sw=2 ts=2 ft=zsh:
|