diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-12-13 23:49:01 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-12-13 23:49:01 +1100 |
commit | 6d5a1295c9d9771d2dd648b45f4928d8fc4517e0 (patch) | |
tree | e9b5a8202666a475fd825bb7a2b6c6af2a3f394a /lib/puppet/provider/service/redhat.rb | |
parent | 45144a1b9da2839fd9f8a182a8f82ecb06e17292 (diff) | |
download | puppet-6d5a1295c9d9771d2dd648b45f4928d8fc4517e0.tar.gz puppet-6d5a1295c9d9771d2dd648b45f4928d8fc4517e0.tar.xz puppet-6d5a1295c9d9771d2dd648b45f4928d8fc4517e0.zip |
Documentation fixes
Diffstat (limited to 'lib/puppet/provider/service/redhat.rb')
-rwxr-xr-x | lib/puppet/provider/service/redhat.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/puppet/provider/service/redhat.rb b/lib/puppet/provider/service/redhat.rb index faa75476d..c6c3540f5 100755 --- a/lib/puppet/provider/service/redhat.rb +++ b/lib/puppet/provider/service/redhat.rb @@ -1,8 +1,11 @@ # Manage Red Hat services. Start/stop uses /sbin/service and enable/disable uses chkconfig Puppet::Type.type(:service).provide :redhat, :parent => :init do - desc "Red Hat's (and probably many others) form of ``init``-style service - management; uses ``chkconfig`` for service enabling and disabling." + desc "Red Hat's (and probably many others) form of ``init``-style service management: + + Uses ``chkconfig`` for service enabling and disabling. + + " commands :chkconfig => "/sbin/chkconfig", :service => "/sbin/service" |