Top level package command wrapper, used to translate the os detected by grains to the correct service manager
Important
If you feel that Salt should be using this module to manage services on a minion, and it is using a different module (or gives an error similar to 'service.start' is not available), see here.
Returns True
if the specified service is available, otherwise returns
False
.
CLI Example:
salt '*' service.available sshd
Disable the named service to start at boot
CLI Example:
salt '*' service.disable <service name> <runlevels=single-runlevel>
salt '*' service.disable <service name> <runlevels=[runlevel1,runlevel2]>
Return True if the named service is enabled, false otherwise
CLI Example:
salt '*' service.disabled <service name> <runlevels=[runlevel]>
Enable the named service to start at boot
CLI Example:
salt '*' service.enable <service name> <runlevels=single-runlevel>
salt '*' service.enable <service name> <runlevels=[runlevel1,runlevel2]>
Return True if the named service is enabled, false otherwise
CLI Example:
salt '*' service.enabled <service name> <runlevels=single-runlevel>
salt '*' service.enabled <service name> <runlevels=[runlevel1,runlevel2]>
Return all available boot services
CLI Example:
salt '*' service.get_all
Return a set of services that are installed but disabled
CLI Example:
salt '*' service.get_disabled
Return a list of service that are enabled on boot
CLI Example:
salt '*' service.get_enabled
The inverse of service.available.
Returns True
if the specified service is not available, otherwise returns
False
.
CLI Example:
salt '*' service.missing sshd
Reload the named service
CLI Example:
salt '*' service.reload <service name>
Restart the named service
CLI Example:
salt '*' service.restart <service name>
Start the specified service
CLI Example:
salt '*' service.start <service name>
Return the status for a service. If the name contains globbing, a dict mapping service name to True/False values is returned.
Changed in version 2018.3.0: The service name can now be a glob (e.g. salt*
)
True if running, False otherwise dict: Maps service name to True if running, False otherwise
CLI Example:
salt '*' service.status <service name> [service signature]
Stop the specified service
CLI Example:
salt '*' service.stop <service name>
Resets service state
CLI Example:
salt '*' service.zap <service name>