I was wondering how to configure the puppet clients to only listen, not to periodically pull configs down from the puppetmaster. I''d rather push the configs out from the puppetmaster with puppetrun... At a guess I need to set runinterval to 0 in /etc/puppet/puppet.conf? -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
On Fri, Aug 13, 2010 at 10:05 AM, ScubaDude <brett.maton@googlemail.com>wrote:> I was wondering how to configure the puppet clients to only listen, > not to periodically pull configs down from the puppetmaster. > > I''d rather push the configs out from the puppetmaster with > puppetrun... > >Running puppetd with --no-client should have this effect. 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Is there a puppet.conf equivalent to --no-client ? All the nodes are RHEL and will use the puppet service (init script). I''d rather not tweak that if possible. Thanks. On Aug 13, 11:38 am, Craig Dunn <li...@codenation.net> wrote:> On Fri, Aug 13, 2010 at 10:05 AM, ScubaDude <brett.ma...@googlemail.com>wrote: > > > I was wondering how to configure the puppet clients to only listen, > > not to periodically pull configs down from the puppetmaster. > > > I''d rather push the configs out from the puppetmaster with > > puppetrun... > > Running puppetd with --no-client should have this effect. > > 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
On 08/13/2010 05:05 AM, ScubaDude wrote:> I was wondering how to configure the puppet clients to only listen, > not to periodically pull configs down from the puppetmaster. > > I''d rather push the configs out from the puppetmaster with > puppetrun... > > At a guess I need to set runinterval to 0 in /etc/puppet/puppet.conf? > >For this to work you''d also have to transfer all the manifests to the clients. -- Joe McDonagh AIM: YoosingYoonickz IRC: joe-mac on freenode "When the going gets weird, the weird turn pro." -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
FYI there is a script around somewhere that works with puppetrun - it is a very lightweight daemon that just listens for puppetrun requests and launches the full daemon. On Fri, Aug 13, 2010 at 9:04 AM, Joe McDonagh <joseph.e.mcdonagh@gmail.com>wrote:> On 08/13/2010 05:05 AM, ScubaDude wrote: > >> I was wondering how to configure the puppet clients to only listen, >> not to periodically pull configs down from the puppetmaster. >> >> I''d rather push the configs out from the puppetmaster with >> puppetrun... >> >> At a guess I need to set runinterval to 0 in /etc/puppet/puppet.conf? >> >> >> > For this to work you''d also have to transfer all the manifests to the > clients. > > -- > Joe McDonagh > AIM: YoosingYoonickz > IRC: joe-mac on freenode > "When the going gets weird, the weird turn pro." > > > -- > 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+unsubscribe@googlegroups.com<puppet-users%2Bunsubscribe@googlegroups.com> > . > For more options, visit this group at > http://groups.google.com/group/puppet-users?hl=en. > >-- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
listen = true ignoreschedules = true Cant you just use those two options to allow puppetruns to work and not have the client attempt to do updates? On Fri, Aug 13, 2010 at 6:44 AM, matonb <brett.maton@googlemail.com> wrote:> Is there a puppet.conf equivalent to --no-client ? > > All the nodes are RHEL and will use the puppet service (init > script). I''d rather not tweak that if possible. > > Thanks. > > On Aug 13, 11:38 am, Craig Dunn <li...@codenation.net> wrote: > > On Fri, Aug 13, 2010 at 10:05 AM, ScubaDude <brett.ma...@googlemail.com > >wrote: > > > > > I was wondering how to configure the puppet clients to only listen, > > > not to periodically pull configs down from the puppetmaster. > > > > > I''d rather push the configs out from the puppetmaster with > > > puppetrun... > > > > Running puppetd with --no-client should have this effect. > > > > 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+unsubscribe@googlegroups.com<puppet-users%2Bunsubscribe@googlegroups.com> > . > For more options, visit this group at > http://groups.google.com/group/puppet-users?hl=en. > >-- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
On Aug 13, 2010, at 7:21 AM, Christopher Johnston wrote:> ignoreschedules = trueThis will cause puppet to ignore schedule resources. It won''t do what you want.> > > Cant you just use those two options to allow puppetruns to work and not have the client attempt to do updates? > > On Fri, Aug 13, 2010 at 6:44 AM, matonb <brett.maton@googlemail.com> wrote: > Is there a puppet.conf equivalent to --no-client ? > > All the nodes are RHEL and will use the puppet service (init > script). I''d rather not tweak that if possible. > > Thanks. > > On Aug 13, 11:38 am, Craig Dunn <li...@codenation.net> wrote: > > On Fri, Aug 13, 2010 at 10:05 AM, ScubaDude <brett.ma...@googlemail.com>wrote: > > > > > I was wondering how to configure the puppet clients to only listen, > > > not to periodically pull configs down from the puppetmaster. > > > > > I''d rather push the configs out from the puppetmaster with > > > puppetrun... > > > > Running puppetd with --no-client should have this effect. > > > > 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+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en. > > > > -- > 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+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.-- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Wont that also ignore the scheduled 30min runs? I believe thats what Craig wanted if I''m not mistaken. Sent from my iPhone On Aug 13, 2010, at 1:32 PM, Patrick Mohr <kc7zzv@gmail.com> wrote:> > On Aug 13, 2010, at 7:21 AM, Christopher Johnston wrote: >> ignoreschedules = true > > This will cause puppet to ignore schedule resources. It won''t do what you want. > >> >> >> Cant you just use those two options to allow puppetruns to work and not have the client attempt to do updates? >> >> On Fri, Aug 13, 2010 at 6:44 AM, matonb <brett.maton@googlemail.com> wrote: >> Is there a puppet.conf equivalent to --no-client ? >> >> All the nodes are RHEL and will use the puppet service (init >> script). I''d rather not tweak that if possible. >> >> Thanks. >> >> On Aug 13, 11:38 am, Craig Dunn <li...@codenation.net> wrote: >> > On Fri, Aug 13, 2010 at 10:05 AM, ScubaDude <brett.ma...@googlemail.com>wrote: >> > >> > > I was wondering how to configure the puppet clients to only listen, >> > > not to periodically pull configs down from the puppetmaster. >> > >> > > I''d rather push the configs out from the puppetmaster with >> > > puppetrun... >> > >> > Running puppetd with --no-client should have this effect. >> > >> > 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+unsubscribe@googlegroups.com. >> For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en. >> >> >> >> -- >> 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+unsubscribe@googlegroups.com. >> For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en. > > -- > 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+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.-- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.