2018-06-18 03:03:02 +00:00
|
|
|
# First argument is the names of the service, i.e. a file in /etc/init.d
|
|
|
|
complete -c service -n "__fish_is_first_token" -xa "(__fish_print_service_names)" -d "Service"
|
2018-06-13 00:24:18 +00:00
|
|
|
|
2018-06-04 04:05:04 +00:00
|
|
|
# as found in __fish_print_service_names.fish
|
|
|
|
if test -d /run/systemd/system # Systemd systems
|
2019-03-24 15:59:00 +00:00
|
|
|
complete -c service -n "not __fish_is_first_token" -xa "start stop restart status enable disable"
|
2018-06-04 04:05:04 +00:00
|
|
|
else if type -f rc-service 2>/dev/null # OpenRC (Gentoo)
|
2019-03-24 15:59:00 +00:00
|
|
|
complete -c service -n "not __fish_is_first_token" -xa "start stop restart"
|
2018-06-04 04:05:04 +00:00
|
|
|
else if test -d /etc/init.d # SysV on Debian and other linuxen
|
2019-03-24 15:59:00 +00:00
|
|
|
complete -c service -n "not __fish_is_first_token" -xa "start stop --full-restart"
|
2018-06-04 04:05:04 +00:00
|
|
|
else # FreeBSD
|
2018-06-13 00:24:18 +00:00
|
|
|
# Use the output of `service -v foo` to retrieve the list of service-specific verbs
|
2018-06-18 02:48:53 +00:00
|
|
|
complete -c service -n "not __fish_is_first_token" -xa "(__fish_complete_freebsd_service_actions)"
|
|
|
|
end
|
|
|
|
|
|
|
|
function __fish_complete_freebsd_service_actions
|
|
|
|
# Use the output of `service -v foo` to retrieve the list of service-specific verbs
|
|
|
|
# Output takes the form "[prefix1 prefix2 ..](cmd1 cmd2 cmd3)" where any combination
|
|
|
|
# of zero or one prefixe(s) and any one command is a valid verb.
|
|
|
|
set -l service_name (commandline --tokenize --cut-at-cursor)[-1]
|
|
|
|
set -l results (service $service_name -v 2>| string match -r '\\[(.*)\\]\\((.*)\\)')
|
|
|
|
set -l prefixes "" (string split '|' -- $results[2])
|
|
|
|
set -l commands (string split '|' -- $results[3])
|
|
|
|
printf '%s\n' $prefixes$commands
|
2018-06-04 04:05:04 +00:00
|
|
|
end
|