diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-11-28 08:57:18 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-11-28 08:57:18 +1100 |
commit | 81a91a7321f1a0c664e04cc2b7045819a970c18f (patch) | |
tree | 8bdcdb4c2eca3d48b1b3e014403f61df9d13de25 | |
parent | 4f67a7c26a5e740fd672b3c4f17e0fd366154840 (diff) | |
download | puppet-81a91a7321f1a0c664e04cc2b7045819a970c18f.tar.gz puppet-81a91a7321f1a0c664e04cc2b7045819a970c18f.tar.xz puppet-81a91a7321f1a0c664e04cc2b7045819a970c18f.zip |
Documentation fix for daemontools provider
-rw-r--r-- | lib/puppet/provider/service/daemontools.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/puppet/provider/service/daemontools.rb b/lib/puppet/provider/service/daemontools.rb index db4a7cdf8..46729e1b1 100644 --- a/lib/puppet/provider/service/daemontools.rb +++ b/lib/puppet/provider/service/daemontools.rb @@ -5,14 +5,14 @@ Puppet::Type.type(:service).provide :daemontools, :parent => :base do desc """ Daemontools service management. This provider manages daemons running supervised by D.J.Bernstein daemontools. -It tries to detect the service directory, with by order of preference: +It tries to detect the service directory, with by order of preference:: * /service * /etc/service * /var/lib/svscan The daemon directory should be placed in a directory that can be -by default in: +by default in:: * /var/lib/service * /etc @@ -24,13 +24,14 @@ or this can be overriden in the service resource parameters:: provider => \"daemontools\", path => \"/path/to/daemons\"; } -This provider supports out of the box: +This provider supports out of the box:: * start/stop (mapped to enable/disable) * enable/disable * restart * status + """ commands :svc => "/usr/bin/svc" |