2018-06-04 12:05:04 +08:00
|
|
|
set -l service_commands
|
|
|
|
|
|
|
|
# as found in __fish_print_service_names.fish
|
|
|
|
if test -d /run/systemd/system # Systemd systems
|
|
|
|
set service_commands start stop restart status enable disable
|
|
|
|
else if type -f rc-service 2>/dev/null # OpenRC (Gentoo)
|
|
|
|
set service_commands start stop restart
|
|
|
|
else if test -d /etc/init.d # SysV on Debian and other linuxen
|
|
|
|
set service_commands start stop "--full-restart"
|
|
|
|
else # FreeBSD
|
|
|
|
set service_commands start stop start_once stop_once
|
|
|
|
end
|
|
|
|
|
2005-09-20 21:31:55 +08:00
|
|
|
# Fist argument is the names of the service, i.e. a file in /etc/init.d
|
2018-06-04 12:05:04 +08:00
|
|
|
complete -c service -n "__fish_is_first_token" -xa "(__fish_print_service_names)" -d "Service name"
|
2005-09-20 21:31:55 +08:00
|
|
|
|
|
|
|
#The second argument is what action to take with the service
|
2018-06-04 12:05:04 +08:00
|
|
|
complete -c service -n "not __fish_is_first_token" -xa "$service_commands"
|
2005-09-20 21:31:55 +08:00
|
|
|
|