2013-11-19 18:45:21 +00:00
|
|
|
function __fish_print_service_names -d 'All services known to the system'
|
2016-02-07 13:52:08 +00:00
|
|
|
if test -d /run/systemd/system # Systemd systems
|
|
|
|
# For the `service` command, this needs to be without the type suffix
|
|
|
|
# on Debian at least
|
|
|
|
__fish_systemctl_services | string replace -r '.service$' ''
|
|
|
|
else if type -f rc-service ^/dev/null # OpenRC (Gentoo)
|
2013-11-19 18:45:21 +00:00
|
|
|
command rc-service -l
|
2016-02-07 13:52:08 +00:00
|
|
|
else if test -d /etc/init.d # SysV on Debian and other linuxen
|
|
|
|
string replace '/etc/init.d/' '' -- /etc/init.d/*
|
|
|
|
else # Freebsd
|
|
|
|
command service -l
|
2013-11-19 18:45:21 +00:00
|
|
|
end
|
|
|
|
end
|