salt.modules.rh_service¶
Service support for RHEL-based systems, including support for both upstart and sysvinit
-
salt.modules.rh_service.available(name, limit='')¶ Return True is the named service is available. Use the
limitparam to restrict results to services of that type.CLI Examples:
salt '*' service.get_enabled salt '*' service.get_enabled limit=upstart salt '*' service.get_enabled limit=sysvinit
-
salt.modules.rh_service.disable(name, **kwargs)¶ Disable the named service to start at boot
CLI Example:
salt '*' service.disable <service name>
-
salt.modules.rh_service.disabled(name)¶ Check to see if the named service is disabled to start on boot
CLI Example:
salt '*' service.disabled <service name>
-
salt.modules.rh_service.enable(name, **kwargs)¶ Enable the named service to start at boot
CLI Example:
salt '*' service.enable <service name>
-
salt.modules.rh_service.enabled(name)¶ Check to see if the named service is enabled to start on boot
CLI Example:
salt '*' service.enabled <service name>
-
salt.modules.rh_service.get_all(limit='')¶ Return all installed services. Use the
limitparam to restrict results to services of that type.CLI Example:
salt '*' service.get_all salt '*' service.get_all limit=upstart salt '*' service.get_all limit=sysvinit
-
salt.modules.rh_service.get_disabled(limit='')¶ Return the disabled services. Use the
limitparam to restrict results to services of that type.CLI Example:
salt '*' service.get_disabled salt '*' service.get_disabled limit=upstart salt '*' service.get_disabled limit=sysvinit
-
salt.modules.rh_service.get_enabled(limit='')¶ Return the enabled services. Use the
limitparam to restrict results to services of that type.CLI Examples:
salt '*' service.get_enabled salt '*' service.get_enabled limit=upstart salt '*' service.get_enabled limit=sysvinit
-
salt.modules.rh_service.reload_(name)¶ Reload the named service
CLI Example:
salt '*' service.reload <service name>
-
salt.modules.rh_service.restart(name)¶ Restart the named service
CLI Example:
salt '*' service.restart <service name>
-
salt.modules.rh_service.start(name)¶ Start the specified service
CLI Example:
salt '*' service.start <service name>
-
salt.modules.rh_service.status(name, sig=None)¶ Return the status for a service, returns a bool whether the service is running.
CLI Example:
salt '*' service.status <service name>
-
salt.modules.rh_service.stop(name)¶ Stop the specified service
CLI Example:
salt '*' service.stop <service name>