Module for the management of MacOS systems that use launchd/launchctl
depends: |
|
---|
salt.modules.launchctl.
available
(job_label)¶Check that the given service is available.
CLI 范例:
salt '*' service.available com.openssh.sshd
salt.modules.launchctl.
disabled
(job_label, runas=None)¶Return True if the named service is disabled, false otherwise
CLI 范例:
salt '*' service.disabled <service label>
salt.modules.launchctl.
enabled
(job_label, runas=None)¶Return True if the named service is enabled, false otherwise
CLI 范例:
salt '*' service.enabled <service label>
salt.modules.launchctl.
get_all
()¶Return all installed services
CLI 范例:
salt '*' service.get_all
salt.modules.launchctl.
missing
(job_label)¶The inverse of service.available Check that the given service is not available.
CLI 范例:
salt '*' service.missing com.openssh.sshd
salt.modules.launchctl.
restart
(job_label, runas=None)¶Restart the named service
CLI 范例:
salt '*' service.restart <service label>
salt.modules.launchctl.
start
(job_label, runas=None)¶Start the specified service
CLI 范例:
salt '*' service.start <service label>
salt '*' service.start org.ntp.ntpd
salt '*' service.start /System/Library/LaunchDaemons/org.ntp.ntpd.plist
salt.modules.launchctl.
status
(job_label, runas=None)¶Return the status for a service, returns a bool whether the service is running.
CLI 范例:
salt '*' service.status <service label>
salt.modules.launchctl.
stop
(job_label, runas=None)¶Stop the specified service
CLI 范例:
salt '*' service.stop <service label>
salt '*' service.stop org.ntp.ntpd
salt '*' service.stop /System/Library/LaunchDaemons/org.ntp.ntpd.plist