Service support for Solaris 10 and 11, should work with other systems that use SMF also. (e.g. SmartOS)
Returns True if the specified service is available, otherwise returns False.
CLI Example:
salt '*' service.available net-snmp
Disable the named service to start at boot
CLI Example:
salt '*' service.disable <service name>
Check to see if the named service is disabled to start on boot
CLI Example:
salt '*' service.disabled <service name>
Enable the named service to start at boot
CLI Example:
salt '*' service.enable <service name>
Check to see if the named service is enabled to start on boot
CLI Example:
salt '*' service.enabled <service name>
Return all installed services
CLI Example:
salt '*' service.get_all
Return the disabled services
CLI Example:
salt '*' service.get_disabled
Return the enabled services
CLI Example:
salt '*' service.get_enabled
Return the running services
CLI Example:
salt '*' service.get_running
Return the stopped services
CLI Example:
salt '*' service.get_stopped
The inverse of service.available. Returns True if the specified service is not available, otherwise returns False.
CLI Example:
salt '*' service.missing net-snmp
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, returns a bool whether the service is running.
CLI Example:
salt '*' service.status <service name>
Stop the specified service
CLI Example:
salt '*' service.stop <service name>
Current Salt release: 2014.1.6
Docs for previous releases on salt.rtfd.org.