The default service module, if not otherwise specified salt will fall back to this basic module
Return if the specified service is available
CLI Example:
salt '*' service.available
Return a list of all available services
CLI Example:
salt '*' service.get_all
Restart the specified service
CLI Example:
salt '*' service.reload <service name>
Restart the specified 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 the PID or an empty string if the service is running or not, pass a signature to use to find the service via ps
CLI Example:
salt '*' service.status <service name> [service signature]
Stop the specified service
CLI Example:
salt '*' service.stop <service name>