[Puppet Users] giving input to prompt in puppet

2010-07-19 Thread prudhvi
Hi, In one of the deployments i need to give input to django application through puppet. say, enter username: abc how to achieve this in puppet, please help. Regards, Bhaskar -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this gr

Re: [Puppet Users] giving input to prompt in puppet

2010-07-19 Thread Jonathan Share
Hi, A little of an off topic reply but I would really recommend using south for managing the structure of the database and possible later migrations for non-destructive upgrades. If you don't want to introduce a new library I would run the syncdb command (I assume this is what you are doing) with

[Puppet Users] Re: giving input to prompt in puppet

2010-07-19 Thread prudhvi
Hi jonathan, Thanq very much for your valuable suggestion, Im looking into it if its usefull for us. Regards, bhaskar On Jul 19, 1:48 pm, Jonathan Share wrote: > Hi, > > A little of an off topic reply but I would really recommend using > south for managing the structure of the database and possi

Re: [Puppet Users] ANNOUNCE: Puppet 2.6.0 - Release Candidate 4 available!

2010-07-19 Thread Jasper Poppe
> Welcome back again to the Puppet release cycle with really truly next to > final release candidate 4. I've tested RC4, the following bugs are solved for me: 4247 Puppet <<|| ||>> operator is failing, and the error is leaking memory and getting stalled 4236 $ without a variable name is interpolat

[Puppet Users] Re: Puppet Dashboard packages updated for V1.0.1 release

2010-07-19 Thread phrawzty
On Jul 17, 7:41 pm, James Turnbull wrote: > Overall instructions for installing and running the Dashboard can be > found at: > > http://github.com/reductivelabs/puppet-dashboard Hello, The documentation for "Puppet 0.25.x and earlier" suggests the following course of action : you would add a li

[Puppet Users] Re: What is the "best practices" way to install puppet

2010-07-19 Thread phrawzty
On Jul 18, 9:19 pm, kevin wrote: > Damn it, is there no acronym for "best practices" yet? ;) > > Ok, I am installing puppet, and wondering which version and from where > should I install.  Gems?  OS packages? Version? Assuming you're using an appropriate system, you can't go wrong with "yum insta

Re: [Puppet Users] Collecting _all_ ssh keys

2010-07-19 Thread Klaus Ethgen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi, Am Sa den 12. Jun 2010 um 10:03 schrieb David Schmitt: > You'll need to set a properly unique title, and set the namevar explicitely: > > @@sshkey { > "${fqdn}dsa": > name => $fqdn, > ... > "${fqdn}rsa":

Re: [Puppet Users] Re: Management of MySQL grant tables?

2010-07-19 Thread steve .
Hmm. Usually I run my clients with --verbose as well for debugging, but I'm not sure that's relevant. I did a test run just now on a client that uses the MySQL module and it printed out debug data for the MySQL provider. I get the following after the configuration is retrieved from the Puppetmas

Re: [Puppet Users] Collecting _all_ ssh keys

2010-07-19 Thread Patrick Mohr
On Jul 19, 2010, at 7:52 AM, Klaus Ethgen wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA512 > > Hi, > > Am Sa den 12. Jun 2010 um 10:03 schrieb David Schmitt: >> You'll need to set a properly unique title, and set the namevar explicitely: >> >> @@sshkey { >> "${fqdn}dsa": >>

[Puppet Users] Re: [Puppet-dev] ANNOUNCE: Puppet 2.6.0 - Release Candidate 4 available!

2010-07-19 Thread Todd Zullinger
James Turnbull wrote: > Welcome back again to the Puppet release cycle with really truly > next to final release candidate 4. For those using Fedora or RHEL/CentOS, I've updated the yum repos at: http://tmz.fedorapeople.org/repo/puppet/ Packages for EL 4 - 6 and Fedora 12 - 13 are available

[Puppet Users] defrouter in zone resource

2010-07-19 Thread John Lyman
Does anyone know a way to set the defrouter when creating a zone on a solaris box? I'm guessing the the provider was written before the Solaris update that provided the new functionality. I've been getting around it with an exec (e.g. zonecfg -z my_zone "select net address=192.168.1.100 ; set def

[Puppet Users] facter fails to recognize OEL/OVS in operatingsystemrelease.rb

2010-07-19 Thread Jim Bala
For the benefit of those running OEL (Oracle Enterprise Linux) or OVS, be aware that under 2.6.0rc4 facter doesn't properly recognize OEL in /usr/lib/ruby/site_ruby/1.8/facter/operatingsystemrelease.rb. A diff for a fix is below; probably not the best fix but if you need it work now, this'll do it

Re: [Puppet Users] Collecting _all_ ssh keys

2010-07-19 Thread Jeff McCune
On Mon, Jul 19, 2010 at 7:52 AM, Klaus Ethgen wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA512 > > Hi, > > Am Sa den 12. Jun 2010 um 10:03 schrieb David Schmitt: >> You'll need to set a properly unique title, and set the namevar explicitely: >> >> @@sshkey { >>       "${fqdn}dsa": >>    

Re: [Puppet Users] defrouter in zone resource

2010-07-19 Thread Nan Liu
On Mon, Jul 19, 2010 at 3:52 PM, John Lyman wrote: > Does anyone know a way to set the defrouter when creating a zone on a > solaris box? > Rather than using exec, I recommend using sysidcfg file with a template. You can specify default route per interface. Please keep in mind sysidcfg is only p

Re: [Puppet Users] ANNOUNCE: Puppet 2.6.0 - Release Candidate 4 available!

2010-07-19 Thread James Turnbull
Jasper Poppe wrote: >> Welcome back again to the Puppet release cycle with really truly next to >> final release candidate 4. > I will start testing new features of 2.6 when this one is resolved (I > have to make the decision to be able to go back to 0.25 or not) A > patch file or rc5 would be nic

[Puppet Users] Re: defrouter in zone resource

2010-07-19 Thread deet
> Rather than using exec, I recommend using sysidcfg file with a template. If this an shared-ip zone then the default_route entry in the sysidcfg will not actually create a route in the non global zone. The routing setup via /lib/svc/method/net-routing-setup doesn't actually do anything in sha

[Puppet Users] Distributing passwd/group/shadow

2010-07-19 Thread noob-puppeteer
Hi, I am trying to figure out a good "puppet" way to do this. In our old configuration, we were using cfengine and distributing passwd, group and shadow files by first running a command on the server that would filter these files to have just the team users (since we are using hosting services) int

Re: [Puppet Users] Distributing passwd/group/shadow

2010-07-19 Thread Patrick Mohr
On Jul 19, 2010, at 6:11 PM, noob-puppeteer wrote: > Hi, > I am trying to figure out a good "puppet" way to do this. In our old > configuration, we were using cfengine and distributing passwd, group > and shadow files by first running a command on the server that would > filter these files to hav

Re: [Puppet Users] Distributing passwd/group/shadow

2010-07-19 Thread Daniel Pittman
noob-puppeteer writes: > I am trying to figure out a good "puppet" way to do this. Use LDAP, or maybe NIS, to distribute the data. No, seriously, that usually fits in about point three or four of the usual infrastructure building checklist, right after getting puppet installed and the manifests

Re: [Puppet Users] facter fails to recognize OEL/OVS in operatingsystemrelease.rb

2010-07-19 Thread Avi Miller
Hwy, Jim Bala wrote: For the benefit of those running OEL (Oracle Enterprise Linux) or OVS, BTW, you should be aware that Puppet 2.6 now supports Oracle Database (including RAC) as a backend for storeconfigs. I have written a blog post on how to configure this which should go up on blogs.ora

[Puppet Users] ANNOUNCE: Puppet 2.6.0 - Final release!

2010-07-19 Thread James Turnbull
The journey was long and arduous and many fell along the way but Puppet Labs is proud to announce the 2.6.0 release! The 2.6.0 release is a major feature release and includes a huge variety of new features, fixes, updates and enhancements. These include the complete cut-over from XMLRPC to the RE

Re: [Puppet Users] ANNOUNCE: Puppet 2.6.0 - Final release!

2010-07-19 Thread Rohan McGovern
James Turnbull said: > The journey was long and arduous and many fell along the way but Puppet > Labs is proud to announce the 2.6.0 release! > Is anyone aware of an attempt to package up a complete (puppet + all prereqs) installer for Windows? Either official, or by someone in the community? A

Puppet on Windows (was Re: [Puppet Users] ANNOUNCE: Puppet 2.6.0 - Final release!)

2010-07-19 Thread James Turnbull
Rohan McGovern wrote: > James Turnbull said: >> The journey was long and arduous and many fell along the way but Puppet >> Labs is proud to announce the 2.6.0 release! >> > > Is anyone aware of an attempt to package up a complete (puppet + all > prereqs) installer for Windows? Either official, or