diff options
author | Ben Hughes <ben@puppetlabs.com> | 2011-04-08 11:33:45 +1000 |
---|---|---|
committer | nfagerlund <nick.fagerlund@gmail.com> | 2011-04-11 16:24:23 -0700 |
commit | bb19dea3912610c652d55c1de00c8e8e9f7698b5 (patch) | |
tree | 67e7de982ff062c78d2f52fa6124767d53b2d91a | |
parent | 4f7ad86adaa3a359761fac2aacf88f56461395bb (diff) | |
download | puppet-bb19dea3912610c652d55c1de00c8e8e9f7698b5.tar.gz puppet-bb19dea3912610c652d55c1de00c8e8e9f7698b5.tar.xz puppet-bb19dea3912610c652d55c1de00c8e8e9f7698b5.zip |
(#7018) explain internals better in service provider documentation
Add explicit reasoning for hasstatus in the documentation with certain
"virtual" services.
Just to clear up why notify => Service["something_virtual"] requires
hasstatus defining for it to function.
-rw-r--r-- | lib/puppet/type/service.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/puppet/type/service.rb b/lib/puppet/type/service.rb index 0d09c3d5d..8387dd52d 100644 --- a/lib/puppet/type/service.rb +++ b/lib/puppet/type/service.rb @@ -97,7 +97,10 @@ module Puppet `status` parameter). If you do not specify anything, then the service name will be - looked for in the process table." + looked for in the process table. Be aware that 'virtual' init + scripts such as networking, that don't have something in the + process table need this functionality to be used with + notify/require trigger actions." newvalues(:true, :false) end |