Provide the service module for systemd
Check that the given service is available taking into account template units.
CLI Example:
salt '*' service.available sshd
Disable the named service to not start when the system boots
CLI Example:
salt '*' service.disable <service name>
Return if the named service is disabled to start on boot
CLI Example:
salt '*' service.disabled <service name>
Enable the named service to start when the system boots
CLI Example:
salt '*' service.enable <service name>
Return if the named service is enabled to start on boot
CLI Example:
salt '*' service.enabled <service name>
Force-reload the specified service with systemd
CLI Example:
salt '*' service.force_reload <service name>
Return a list of all available services
CLI Example:
salt '*' service.get_all
Return a list of all disabled services
CLI Example:
salt '*' service.get_disabled
Return a list of all enabled services
CLI Example:
salt '*' service.get_enabled
Reload the specified service with systemd
CLI Example:
salt '*' service.reload <service name>
Restart the specified service with systemd
CLI Example:
salt '*' service.restart <service name>
Start the specified service with systemd
CLI Example:
salt '*' service.start <service name>
Return the status for a service via systemd, returns a bool whether the service is running.
CLI Example:
salt '*' service.status <service name>
Stop the specified service with systemd
CLI Example:
salt '*' service.stop <service name>
Reloads systemctl, an action needed whenever unit files are updated.
CLI Example:
salt '*' service.systemctl_reload