Re: [Puppet Users] Anyone really using Postgres for a Hiera backend?

2015-07-22 Thread Tom De Vylder
Puppet-Community [1] would be a prime example to take over the maintainership. [1] https://github.com/puppet-community/ Tom > On 13 Jul 2015, at 15:45, Erik Dalén wrote: > > Yeah, I'm not really using puppet server (yet at least) or the postgres hiera >

Re: [Puppet Users] module dependancy

2013-05-29 Thread Tom De Vylder
Hi, Class ['pythonpip'] -> Class ['myapp'] … should do the trick for you. Regards, Tom On 14 May 2013, at 20:36, Matt F wrote: > I have two modules, and I'm having some dependacy problems: > > 1 - Install python "pip": > > class pythonpip::install { > file {"/root/.pip": > ens

Re: [Puppet Users] Array Length

2012-08-15 Thread Tom De Vylder
On 16 Aug 2012, at 00:07, Douglas Garstang wrote: > On Wed, Aug 15, 2012 at 3:05 PM, Tom De Vylder wrote: >> >> On 15 Aug 2012, at 23:58, Douglas Garstang wrote: >> >>> On Wed, Aug 15, 2012 at 2:55 PM, Ryan Coleman wrote: >>>> On Wed, Aug 15, 201

Re: [Puppet Users] Array Length

2012-08-15 Thread Tom De Vylder
t; 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. > Regards, Tom De

Re: [Puppet Users] installing packages from debian backports?

2011-12-23 Thread Tom De Vylder
t; On Thu, Dec 22, 2011 at 18:16, Matt Zagrabelny wrote: > On Thu, Dec 22, 2011 at 7:32 AM, Matt Zagrabelny wrote: > > On Thu, Dec 22, 2011 at 3:31 AM, Walter Heck wrote: > >> > >> > >> On Thu, Dec 22, 2011 at 11:19, Tom De Vylder wrote: > >>>

Re: [Puppet Users] installing packages from debian backports?

2011-12-22 Thread Tom De Vylder
On 22 Dec 2011, at 02:29, Matt Zagrabelny wrote: > On Wed, Dec 21, 2011 at 5:37 PM, Walter Heck wrote: >> Look into apt pinning, that is the way to pin specific packages to come from >> a specific origin. It's done in /etc/apt/preferences, the deep inner >> workings are a tad voodoo, but nothing

Re: [Puppet Users] Regenerating puppet master certificate

2011-10-25 Thread Tom De Vylder
> On Tue, Oct 25, 2011 at 3:00 AM, Tom De Vylder wrote: > > > Puppetca is now called "puppet cert". > > Correct me if I'm wrong but it can only generate client certs. > > > If you don't have an SSL dir, puppet cert --generate will generate t

Re: [Puppet Users] Regenerating puppet master certificate

2011-10-25 Thread Tom De Vylder
On 25 Oct 2011, at 11:46, Brice Figureau wrote: > Hi Tom, > > On Tue, 2011-10-25 at 11:20 +0200, Tom De Vylder wrote: >> Hi all, >> >> Is there a more elegant way to regenerate the Puppet master >> certificate than what's described in the CVE-2011-3

[Puppet Users] Regenerating puppet master certificate

2011-10-25 Thread Tom De Vylder
ng 'puppetca'. But ever since puppetca isn't available anymore I can't seem to find any information on how to do it instead. Well other than what's described above that is. But that's not feasible in an automated fashion. I'd like to deploy a second puppet mast

[Puppet Users] Weird facter behavior when using envpuppet

2011-10-14 Thread Tom De Vylder
fined method `get_uptime' for Facter::Util::Uptime:Module Versions: envpuppet: commit 0175d11564 (today's version, https://raw.github.com/puppetlabs/puppet/master/ext/envpuppet) debian: 6 facter: see above ruby: 1.8.7 (debian default) Any ideas would be we

Re: [Puppet Users] [Dashboard] permission denied error when using apache

2011-09-28 Thread Tom De Vylder
On 27 Sep 2011, at 20:49, Russell Van Tassell wrote: > Just FYI/FWIW ... Passenger tries to run (setuid) as the user that owns > config.ru... not as the apache user. > > Ref: http://projects.puppetlabs.com/projects/1/wiki/Using_Passenger Thanks! That one finally got me on the right track. Even

Re: [Puppet Users] [Dashboard] permission denied error when using apache

2011-09-27 Thread Tom De Vylder
On 27 Sep 2011, at 16:10, Scott Smith wrote: > Check the exception. It's trying to rm all.js > The same happens with stylesheets/all.css. Both files don't exist on the filesystem, nor are they supplied in the package. # dpkg -c puppet-dashboard_1.2.1-1_all.deb | grep -iE 'all.css|all.js' # I do

[Puppet Users] [Dashboard] permission denied error when using apache

2011-09-27 Thread Tom De Vylder
Hi all, I'm running into javascript errors using Puppet Dashboard behind an Apache2/Passenger setup. "Permission denied - /usr/share/puppet-dashboard/public/javascripts/all.js" The permissions inside public/ are ok. The whole public folder is owned by the Apache user. And I'm able to browse an

Re: [Puppet Users] Distributing a PHP file as template fails

2011-08-12 Thread Tom De Vylder
On 12 Aug 2011, at 13:49, Darren Chamberlain wrote: > On 8/12/2011 7:43 AM, Tom De Vylder wrote: >> file { >> "/var/www/app/include": >> ensure => directory; >> >> "/var/www/app/include/init.php": >>

Re: [Puppet Users] Distributing a PHP file as template fails

2011-08-12 Thread Tom De Vylder
On 11 Aug 2011, at 18:26, Daniel Pittman wrote: > On Thu, Aug 11, 2011 at 08:42, Tom De Vylder wrote: > >> I'm trying to distribute a PHP file as a template. >> The problem I'm running into is that each variable in the PHP file is >> recognized as a Puppet or

Re: [Puppet Users] Distributing a PHP file as template fails

2011-08-12 Thread Tom De Vylder
On 12 Aug 2011, at 01:06, vagn scott wrote: > On 08/11/2011 04:42 AM, Tom De Vylder wrote: >> # cat include/init.php >> > $dbhost = '<%= app_dbhost %>'; >> $dbname = '<%= app_dbname %>'; >> $dbuser = '<%= app_dbu

[Puppet Users] Distributing a PHP file as template fails

2011-08-11 Thread Tom De Vylder
Hi all, I'm trying to distribute a PHP file as a template. The problem I'm running into is that each variable in the PHP file is recognized as a Puppet or ERB variable. Take this snippet for instance: # cat include/init.php '; $dbname = '<%= app_dbname %>'; $dbuser = '<%= app_dbuser %>

[Puppet Users] Re: Distributing a PHP file as template fails

2011-08-11 Thread Tom De Vylder
Forgot to mention some important details: # cat /etc/debian_version 6.0.2 # puppet --version # Take 1: Debian default 2.6.2 # puppet --version # take 2: Debian Backports 2.7.1 On 11 Aug 2011, at 10:42, Tom De Vylder wrote: > Hi all, > > I'm trying to distribute a PHP file

Re: [Puppet Users] Custom manifest

2011-08-11 Thread Tom De Vylder
Hi, You could use something like this: exec { "svn up": command => "svn up", notify => Service["apache"], } service { "apache": enable => true, ensure => running, } Regards, Tom On 11 Aug 2011, at 10:51, Himanshu Raina wrote: > Hi, > > > Can I execute a comma