On 17 Aug 2015, at 11:38, Ayyanar <ayyanar....@gmail.com> wrote: > I don't want to fetch the configuration for particular interval. > > example default runintervel = 30min. > I want to never fetch the configuration. > How to set this value. > The “default_runinterval” only has a meaning when you have the puppet agent running. Maybe you want to ensure the service is stopped and removed from run levels?
service { ‘puppet’: ensure => stopped, enable => false, } or: (from defaults.rb): :runinterval => { :default => "30m", :type => :duration, :desc => "How often puppet agent applies the catalog. Note that a runinterval of 0 means \"run continuously\" rather than \"never run.\" If you want puppet agent to never run, you should start it with the `--no-client` option. #{AS_DURATION}", }, > -- > You received this message because you are subscribed to the Google Groups > "Puppet Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to puppet-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/puppet-users/0f170975-28a0-438f-a88f-45684bf54fc8%40googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/A25F7BBD-B304-407A-A6C7-83BE5216E3D5%40gmail.com. For more options, visit https://groups.google.com/d/optout.