Re: [Puppet Users] Virtual Resources in PE3.7.0

2014-12-18 Thread Felix Frank
On 12/18/2014 08:46 AM, Varun Utagikar wrote: > nodedefault { > } > ### > node'hdpnamenode1.xor.in' { > include users > realize (Users::Virtual ['varun']) > } Weird. Please sprinkle all the code that you pasted with notify resources

Re: [Puppet Users] Virtual Resources in PE3.7.0

2014-12-18 Thread Felix Frank
On 12/18/2014 10:18 AM, Felix Frank wrote: >> realize (Users::Virtual ['varun']) Oh I just noticed - are you using parser=future now? I seem to recall a comment from Erik that the space in the resource reference is a problem now, i.e. Users::Virtual ['varun'] # wrong vs Users::Virtual[

Re: [Puppet Users] Re: what gets run when a client can't connect?

2014-12-18 Thread Juan Sierra Pons
Hi, Also you can use the pre_run directive on your client puppet.conf to run a command that check vwdial is nunning and starts it if necessary. More info can be found on https://www.packtpub.com/books/content/puppet-integrating-external-tools Best regards ---

Re: [Puppet Users] puppet agent restarting everyday?

2014-12-18 Thread Suresh P
Becase of this restart. My 1200 puppet agent runtime changed and so all 1200 puppet agents try to connect puppetmasters at same time because of this most of the agent in out-of-sync or error stat. Regards, Suresh. On Tuesday, 16 December 2014 20:10:21 UTC+5:30, Dirk Heinrichs wrote: > > Am

[Puppet Users] Re: Announce: Puppet Server 1.0.0 available!

2014-12-18 Thread Byron Miller
Great news! Looking forward to seeing this get some heavy use now! On Wednesday, December 17, 2014 11:29:21 PM UTC-6, Eric Sorenson wrote: > > We're pleased to announce that Puppet Server 1.0.0 is now available. > > This release is the official "one point oh" version of Puppet Server. In > accorda

Re: [Puppet Users] Re: Class ordering via anchor patterns not working in a pretty simple setup

2014-12-18 Thread jcbollinger
On Wednesday, December 17, 2014 9:20:19 AM UTC-6, Abhijeet Rastogi wrote: > > Hi John, > > Thanks for replying. I tried using contain. > > class profile::base { > contain '::yum::repo::epel' > contain '::yum::repo::puppet' > } > > Still didn't work for me. Is there a possibility of known bug

Re: [Puppet Users] Re: Announce: Puppet Server 1.0.0 available!

2014-12-18 Thread Pete Brown
Awesome job everyone! One question. Is there or will there be a package provider for puppet-server gem like there is for Puppet Enterprise gem? I have a module that manages puppet and I will be needing such a thing if I am to add support for Puppet Server. If there isn't I will have to write one.

[Puppet Users] Package ensure present but install older version if missing (not latest in repo)?

2014-12-18 Thread Joseph Lombardo
We have a use case where when a new server comes up, it needs to install a particular version of a package. However, if this package is upgraded puppet should ignore it. I have been unable to find a non-hacky way to do this. Basically, need to ensure present but install a particular version (no

[Puppet Users] lock *nix user accounts with no password

2014-12-18 Thread Brian Keating
Hi, Our security policy states we lock *nix accounts that have no passwords. I wrote a bash script that does the job but my onlyif statement isn't working. I want it to check and only trigger when true - not every time. I'm new to puppet trying to learn how to write 'onlyif' statements - can

[Puppet Users] setting folders to different permissions

2014-12-18 Thread Brian Keating
Hi, I want to set /home dir to chmod 750 but all dirs included to 755. Anyone have a solution? Thanks, Brian. -- 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 p

[Puppet Users] multiple user creation with puppet module .

2014-12-18 Thread Krushna Chandra Sahu
Hi I am beginner in puppet world . I just created a module folder called users with following folder . puppetservertest:/etc/puppet/modules/users# ls files manifests templates In manifest folder, I have single file called init.pp class users ( ) { group { "nextadmin":

Re: [Puppet Users] Virtual Resources in PE3.7.0

2014-12-18 Thread Varun Utagikar
Hey Felix I tried realizing the user via : Users::Virtual<| title == 'varun' |> and also with realize Users::Virtual['varun'] but to no avail. I put a notify in my manifest but it gives no significant o/p help just : /etc/puppetlabs/puppet/modules/users/manifests/init.pp class users {