diff options
author | Sol Jerome <sol.jerome@gmail.com> | 2011-04-21 09:48:30 -0500 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2011-04-21 09:48:30 -0500 |
commit | 788d6e5cc035710999d2097c4ef2da69568e8995 (patch) | |
tree | d7270e97708563f8cc2e033c1e94264c202f8e40 /doc | |
parent | b77c343f4b103ecdd8fd444f96254116465cc8ba (diff) | |
download | bcfg2-788d6e5cc035710999d2097c4ef2da69568e8995.tar.gz bcfg2-788d6e5cc035710999d2097c4ef2da69568e8995.tar.bz2 bcfg2-788d6e5cc035710999d2097c4ef2da69568e8995.zip |
doc: Add documentation for the Systemd client tool
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/client/tools.txt | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/doc/client/tools.txt b/doc/client/tools.txt index d9a9b76f4..bedcb9ab9 100644 --- a/doc/client/tools.txt +++ b/doc/client/tools.txt @@ -57,11 +57,15 @@ Chkconfig Tool to manage services (primarily on Redhat based distros). -.. note:: Start and stop are standard arguments, but the one for reload - isn't consistent across services. You can specify which argument - to use with the `restart` property in Service tags. Example: - ``<Service name="ftp" restart="condrestart" status="on" - type="chkconfig">`` +.. note:: + + Start and stop are standard arguments, but the one for reload + isn't consistent across services. You can specify which argument + to use with the ``target`` attribute in Service tags. Example: + + .. code-block:: xml + + <Service name="ftp" target="condrestart" status="on" type="chkconfig"/> DebInit ------- @@ -89,9 +93,13 @@ launchd Mac OS X Services. To use this tool, you must maintain a standard launch daemon .plist file in ``/Library/LaunchDaemons/`` (example ssh.plist) -and setup a ``<Service name="com.openssh.sshd" type="launchd" status="on" -/>`` entry in your config to load or unload the service. Note the name -is the ''Label'' specified inside of the .plist file +and setup an entry in your config to load or unload the service. + +.. code-block:: xml + + <Service name="com.openssh.sshd" type="launchd" status="on"/> + +Note the name is the *Label* specified inside of the .plist file Portage ------- @@ -133,7 +141,18 @@ Example legacy run service (lrc): .. code-block:: xml - <BoundService name='/etc/rc2_d/S47pppd' FMRI='lrc:/etc/rc2_d/S47pppd' status='off' type='smf'/> + <Service name='/etc/rc2_d/S47pppd' FMRI='lrc:/etc/rc2_d/S47pppd' status='off' type='smf'/> + +Systemd +------- + +Systemd service support. + +Example: + +.. code-block:: xml + + <Service name='udev' status='on' type='systemd'/> SYSV ---- |