On Sep 22, 2011, at 11:37 AM, mbargar wrote:

> I have written the manifest that creates the cron jobs and those
> actully are created ok, but my issue is that i have the following
>  service { "pe-puppet-agent":
>     enable => false,
>     ensure => stopped,
>  }
> and for some reason it will set the enable to false but it does not
> stop the puppet service. Any ideas?
----
been there, done that and even have a puppet t-shirt (thanks Nigel)

assuming you have /etc/init.d/pe-puppet-agent file, try

service { "pe-puppet-agent":
    enable => false,
    ensure => stopped,
    hasstatus  => true,
    hasrestart => true,
 }

Craig

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to