aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_service_names.fish
blob: e216b7509a3afda590d66e510df47462d4e891b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function __fish_print_service_names -d 'All services known to the system'
    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)
        command rc-service -l
    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
    end
end