[Puppet Users] Autoscaling with Puppet

2012-05-13 Thread de
I have a specific need to use Puppet to Autoscale a few applications I have deployed on EC2. I'm using Puppet now to manage and create instances and saw a neat video on this subject. I'm missing the a piece of the puzzle. I'm assuming I should use Cloudwatch to send my puppetmaster a notificatio

Re: [Puppet Users] Autoscaling with Puppet

2012-05-15 Thread de
re based on AMIs that are either preconfigured for puppet, > or have the cloud-init info passed to them to get puppet up and running. > > -Brian > > On Sun, May 13, 2012 at 9:28 PM, de wrote: > >> I have a specific need to use Puppet to Autoscale a few applications I >> h

Re: [Puppet Users] Autoscaling with Puppet

2012-05-15 Thread de
both AWS and rackspace cloud. >> >> -tim >> >> On Sun, May 13, 2012 at 9:28 PM, de wrote: >> > I have a specific need to use Puppet to Autoscale a few applications I >> have >> > deployed on EC2. I'm using Puppet now to manage and create instance

[Puppet Users] Master Timeout

2012-05-16 Thread de
Howdy, our puppet master is hosting nagios at the same time. it happens that the compilation of the catalog for the master during a puppet run produces a timeout: === err: Could not retrieve catalog from remote server: execution expired warning: Not using cache on failed catalog err: Could not re

[Puppet Users] Re: Autoscaling with Puppet

2012-05-16 Thread de
This might be what I was looking for. Havent' yet looked into this. https://github.com/ccaum/puppet-autoami On Sunday, May 13, 2012 9:28:25 PM UTC-4, de wrote: > > I have a specific need to use Puppet to Autoscale a few applications I > have deployed on EC2. I'm using Puppe

[Puppet Users] Puppet create LBS, Autoscaling group(s)

2012-05-16 Thread de
I found this article on Provisioning with Puppet: http://puppetlabs.com/blog/provisioning-in-the-cloud-with-puppet-enterprise-2-0/ I'm using Puppet like a would be command line tool instead which may or may not be a wrong approach. Anyways, Is there a way to create Elastic Balancer(s), configur

[Puppet Users] Re: Mailing list etiquette

2012-05-16 Thread de
Michael, just a heads up. The IRC channel seems flooded with irrelevant chatter to Puppet. I'd expect that the behavior I saw from EFNet, but not Freenode. For example, I asked a related question, the reply was F-bomb, gringo, F-bomb. Kinda funny, but can sour someone else less amused. On Tuesd

[Puppet Users] Puppet Node Create?

2012-05-16 Thread de
Was... Bash$ puppet node create This "create" action no longer exists. Has it been depreciated? Is the only way to create a node through puppetmaser now? Thanks, D -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on t

Re: [Puppet Users] Puppet Node Create?

2012-05-16 Thread de
I have cloud_provisioner installed. It's not available. I think you can only create nodes from puppetmaster, which "kinda" makes sense, but I'd like the option. /Users/de/.puppet/modules └── puppetlabs-cloud_provisioner (v1.0.4) If anyone else has some info on this, p

Re: [Puppet Users] Re: Puppet Node Create?

2012-05-16 Thread de
Gary, I looked at the link earlier. Thanks though. I was aware cloud provisioner was not enterprise specific. I tried the following, but you can see the error message below: puppet node create --image ami-b89842d1 --keypair cat-keypair --type m1.small /Users/de/.rvm/rubies/ruby-1.9.3-p194/lib

Re: [Puppet Users] Re: Puppet Node Create?

2012-05-16 Thread de
OKAY. I'm an idiot. It's this... Bash$ puppet node_aws ...etc NOT Bash$ puppet node ...etc Problem solved. On Wednesday, May 16, 2012 6:28:06 PM UTC-4, de wrote: > > Gary, I looked at the link earlier. Thanks though. I was aware cloud > provisioner was not enterprise sp

[Puppet Users] Satisfying agent's obsession with fetching signed certificates.

2016-02-27 Thread dE
Hi! As per this documentation, for the agent, getting a certificate signed is completely optional if it has a valid and signed copy. I've made 3 pairs -- one for both the agent and master, and a CA certificate

[Puppet Users] puppet cannot find class.

2016-03-05 Thread dE
/code/modules/all_class/manifests: dep.pp first_class.pp Contents of first_class.pp -- class first_class { file { '/tmp/fclass.txt': ensure => present, owner => de, group => de, } file { '/tmp/p

Re: [Puppet Users] puppet cannot find class.

2016-03-05 Thread dE
Now I see the bigger picture. Looks like this <https://docs.puppetlabs.com/puppet/4.3/reference/lang_classes.html#location> documentation is wrong. Thanks for the help everyone! On Saturday, March 5, 2016 at 5:00:17 PM UTC+5:30, Martin Alfke wrote: > > Hi > On 05 Mar 201

[Puppet Users] Significance of ca_name?

2016-04-02 Thread dE
The documentation says -- The name to use the Certificate Authority certificate. > Which sound like wrong grammar. The correct one must be -- The name to use for the Certificate Authority certificate. On my master, the ca_name = Puppet CA: puppetmaster and the CA cert file is named ca_crt.

[Puppet Users] [JOB] Atlassian Internal IT - San Francisco USA

2012-06-22 Thread Paul De Audney
member. You will work within a team that covers 3 timezones, so great written communication skills in English is a must. No prior knowledge of the Atlassian products is required. However we use Java & Tomcat extensively. Regards, Paul De Audney pdeaud...@atlassian.com No recruiters required.

[Puppet Users] Override resource in nested class structure

2011-07-01 Thread Chris de Villiers
Hello everybody I have a set of nested classes and the deepest class looks after a file resource. I want all my nodes to be of the parent class type except one of them needs a special copy of the same file resource. How do I override the file resource for that specific node without copying the en

[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

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

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 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] Puppet environment can't be used in extlookup (precedence)

2011-09-19 Thread Marcello de Sousa
w the code. Any nice tips anyone ? On Fri, Apr 22, 2011 at 1:08 PM, Marcello de Sousa wrote: > Tested with 2.6.7-1 > > I'll try to reproduce it with 2.6.6 > > On Fri, Apr 22, 2011 at 12:22 PM, R.I.Pienaar wrote: >> >> >> - Original Message - >>

[Puppet Users] Re: Recommended way to install custom packages, and what does the Service type's manifest attribute do?

2011-09-23 Thread Dieter De Meyer
Hi, it just so happens that I'm attempting to do the same thing, automating the install of a Nexus repository. I'm quite new to building RPMs, so I was wondering if you would be willing to share your RPM build script and puppet manifests ? I'm currently writing a puppet module that performs the

[Puppet Users] run puppet service type with specific user

2011-09-24 Thread Dieter De Meyer
Hi, is it possible to use the service resource type with a specific user ? So that the service is started with that given user instead of the puppet user starting it... Thanks. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this disc

Re: [Puppet Users] run puppet service type with specific user

2011-09-24 Thread Dieter De Meyer
Thanks for the reply. I modified the rc script to run as a user. But now I'm facing the following problem: I have to include some nasty puppet code for adding the service before i can use the service resource type. And the service resource type returns ok, but the service is in fact not started.

Re: [Puppet Users] run puppet service type with specific user

2011-09-24 Thread Dieter De Meyer
Thank you all for the replies. I will certainly look into it.. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/4uAfGv7esQsJ. To post to this group, send ema

[Puppet Users] centos puppet user resource type - provider useradd does not support features manages_passwords

2011-09-24 Thread Dieter De Meyer
Hello, I have a CentOS 6.0 Virtualbox VM to package as a Vagrant box for testing Puppet manifests. The problem i'm having is with the user resource type not working with CentOS. I keep having an error message when setting the password for a user. Provider useradd does not support features manag

[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] [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

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

[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

[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

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

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] 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] 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: > >>>

[Puppet Users] manage desktops

2010-06-15 Thread Daniel De Marco
Hi, I'm starting to look into puppet to manage a bunch of linux desktops. They all use dhcp and their IP addresses are not fixed. I'm thinking of fixing the hostnames of the machines to some non-existent domain and then using puppet normally. In this way even if their IP address changes from ti

Re: [Puppet Users] manage desktops

2010-06-17 Thread Daniel De Marco
* Ohad Levy [06/15/2010 22:38]: >The ip address does not really matter, if you want to force your own >certificate names, you can use the certname option instead on relaying on >facter to resolve the fqdn fact for you. ah... that's even better. I didn't notice that option on the manua

Re: [Puppet Users] Disabling Certificates

2010-11-11 Thread Peter De Cleyn
Hi Derek, In our setup, the certificates pose also more problems than they add functionality. I would love to hear of a solution to get rid of the certificates, but until now I did not find or heard of any solution. Peter On 11 Nov 2010, at 04:42, Derek J. Balling wrote: > Has anyone had an

[Puppet Users] Puppet environment can't be used in extlookup (precedence)

2011-04-19 Thread Marcello de Sousa
Anyone able to explain why "$fqdn" works and "$environment" doesn't in: $extlookup_precedence=["%{fqdn}","%{environment}","common"] How to reproduce it: - - In "/etc/puppet/manifests/site.pp" : $extlookup_datadir = "/etc/puppet/manifests/extdata" $extlookup_precedenc

Re: [Puppet Users] ssh_authorized_key fails when home directory doesn't exist

2011-04-21 Thread Marcello de Sousa
I have the same issue (using Likewise Open) and even remember discussing this briefly with Jeff (Puppetcamp in Belgium). I still could not find a perfect solution. Likewise open takes care of k5login kerberos file when creating the homedir. If the folder already exists because puppet created it, L

Re: [Puppet Users] ssh_authorized_key fails when home directory doesn't exist

2011-04-21 Thread Marcello de Sousa
Btw, you can probably let puppet manage the .k5login as well... It's just an extra small hassle. On Fri, Apr 22, 2011 at 2:10 AM, Marcello de Sousa wrote: > I have the same issue (using Likewise Open) and even remember > discussing this briefly with Jeff (Puppetcamp in Belgium). I st

Re: [Puppet Users] Puppet environment can't be used in extlookup (precedence)

2011-04-22 Thread Marcello de Sousa
This is bugging me for a couple of days now as I don't seem to find a reasonable explanation for the different behavior on the 2 puppet variables. Not sure if it's a puppet issue or an extlookup issue (or maybe my own issue). Help ? :) On Wed, Apr 20, 2011 at 12:25 AM, Marcello de So

Re: [Puppet Users] Puppet environment can't be used in extlookup (precedence)

2011-04-22 Thread Marcello de Sousa
Tested with 2.6.7-1 I'll try to reproduce it with 2.6.6 On Fri, Apr 22, 2011 at 12:22 PM, R.I.Pienaar wrote: > > > - Original Message - >> This is bugging me for a couple of days now as I don't seem to find a >> reasonable explanation for the different behavior on the 2 puppet >> variabl

[Puppet Users] Cascaded conditionals possible ?

2010-02-15 Thread Marcello de Sousa
I've been trying to use a resolv_conf recipe to setup the DNS servers based on $domain and $location (a custom fact). So I cascade the 2 conditionals, but it's not working. Is it supposed to work ? Or should I look for an alternative ? -- resolv_conf { "l

RE: [Puppet Users] Cascaded conditionals possible ?

2010-02-16 Thread Marcello de Sousa
ssed them down into a template. > > Sent from my iPhone > > On Feb 16, 2010, at 7:05 AM, Trevor Vaughan > wrote: > > > I haven't tried it that way, but it would seem that that wouldn't > > work to me. > > > > It does work with nested if/else sta

RE: [Puppet Users] vmwaretools

2010-02-17 Thread Marcello de Sousa
I've recently deployed on (via puppet) the following script to deal automatically with kernel updates: --- #Automatically updates VMWare tools (to be called from /etc/rc.local) if [ ! -e /lib/modules/`uname -r`/.vmware_installed ]; then /usr/bin/vmware-config-tools.p

RE: [Puppet Users] Cascaded conditionals possible ?

2010-02-17 Thread Marcello de Sousa
m > Subject: Re: [Puppet Users] Cascaded conditionals possible ? > > On Mon, 15 Feb 2010, Marcello de Sousa wrote: > > I've been trying to use a resolv_conf recipe to setup the DNS servers > based > > on $domain and $location (a custom fact). > > So I cascade the 2

RE: [Puppet Users] ssh::auth server dependency on ~/.ssh and a scoping question

2010-02-25 Thread Marcello de Sousa
I also manage users using AD (and likewise-open deployed with puppet), and I've had a similar issue. I couldn't find an elegant way to deploy ssh public keys "only if" the home dir exists. I do NOT want the user homedir to be created by puppet! (It must be created by likewise-open if the user log

RE: [Puppet Users] ssh::auth server dependency on ~/.ssh and a scoping question

2010-02-25 Thread Marcello de Sousa
Hi Andrew, > > "IF homedir exists => deploy .ssh/authorized_keys , else do nothing" > > As far as I know this is not possible with puppet. > > Marcello, I want to understand your use case. AD and LDAP seem to be > fairly common in Puppet installations, and I'd like for ssh::auth to > work well w

RE: [Puppet Users] ssh::auth server dependency on ~/.ssh and a scoping question

2010-02-25 Thread Marcello de Sousa
about deploying the keys to /etc/skel? Would that be enough for > what you want? > > > On Feb 25, 2010, at 8:47 AM, Marcello de Sousa wrote: > > > Hi Andrew, > > > >>> "IF homedir exists => deploy .ssh/authorized_keys , else do > nothing"

RE: [Puppet Users] ssh::auth server dependency on ~/.ssh and a scoping question

2010-02-25 Thread Marcello de Sousa
t Users] ssh::auth server dependency on ~/.ssh and a > scoping question > > On Thu, Feb 25, 2010 at 12:52 PM, Patrick wrote: > > > > On Feb 25, 2010, at 11:23 AM, Marcello de Sousa wrote: > > > Patrick, > > > > If you do that you

RE: [Puppet Users] ssh::auth server dependency on ~/.ssh and a scoping question

2010-02-26 Thread Marcello de Sousa
Sent: vrijdag 26 februari 2010 11:32 > To: puppet-users@googlegroups.com > Cc: Alan Barrett > Subject: Re: [Puppet Users] ssh::auth server dependency on ~/.ssh and a > scoping question > > On Friday 26 Feb 2010 09:37:28 Alan Barrett wrote: > > On Thu, 25 Feb 2010, Marcello

[Puppet Users] Foreman environments vs. Puppet Environments

2010-02-26 Thread Marcello de Sousa
Does anybody know or have a Howto on how to use "Foreman environments" and their relationship and interaction with "puppet environments" ? If they are not related, is there a way to assign a machine to a "puppet environment" via Foreman's interface ? Cheers, Marcello -- You received this messag

RE: [Puppet Users] Foreman environments vs. Puppet Environments

2010-02-26 Thread Marcello de Sousa
t; > Foreman can scan your existing modules assigning the right classes to > the relevant environments. > > there is another environment settings in foreman (e.g. if you start the > server in the command line) - this is rails environment and is not > related to puppet at all. >

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] 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] Noob setting up, hitting SSL Errors

2012-10-11 Thread Johan De Wit
...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en. -- Johan De Wit Open Source Consultant (rhce : 805008667232363) _ Open-Future Phone +32 (0)2/255 70 70 Zavelstraat 72

Re: [Puppet Users] Facter Variable inside of variable string

2012-10-12 Thread Johan De Wit
ooglegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en. http://docs.puppetlabs.com/guides/style_guide.html#quoting use double quotes when you have variables in your string. Grts Jo -- Johan De Wit Open Source Consultan

[Puppet Users] dynamic data in hiera

2012-10-17 Thread Peter De Cleyn
Hi list, I wondered if I could include 'dynamic' data inside a hiera yaml file. I would like to be able to add variables in scope of the resource which performs a hiera call. So e.g. in hiera yaml: address: "192.168.1.#{nodeID}" in puppet node test { $nodeID = 5 $ip=hiera(address) } I

Re: [Puppet Users] dynamic data in hiera

2012-10-17 Thread Peter De Cleyn
t setup up, so > no other nodes are connected but one and it is quite reproducable on this > setup. Is this a known issue? > > Peter > > > Op woensdag 17 oktober 2012 16:30:03 UTC+2 schreef R.I. Pienaar het volgende: > > > - Original Message - > &g

Re: [Puppet Users] dynamic data in hiera

2012-10-18 Thread Peter De Cleyn
://projects.puppetlabs.com/issues/17094 to address the issue and suggested a possible fix (using Regexp.escape) . Otherwise, hiera is a great tool to work with! Such a level of flexibility you add to your puppet environment! Peter On Wed, Oct 17, 2012 at 11:54 PM, Peter De Cleyn wrote: > No, just plain manife

Re: [Puppet Users] dynamic data in hiera

2012-10-18 Thread Peter De Cleyn
To be sure, you can run the puppet master in debug mode: puppet master --no-daemonize --debug You will get a continuous stream of messages from hiera: Debug: hiera(): Looking up $sys in scope Debug: hiera(): Looking up $sys in scope Debug: hiera(): Looking up $sys in scope ... On Fri, Oct 19, 2

Re: [Puppet Users] array and string

2012-10-29 Thread Johan De Wit
the web visit https://groups.google.com/d/msg/puppet-users/-/OdJUlKWcv9wJ. 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.

Re: [Puppet Users] managing java with puppet (RH)

2012-11-20 Thread Johan De Wit
ht track for a possible solution. Any comments are welcome. Grts johan -- Johan De Wit Open Source Consultant Red Hat Certified Engineer(805008667232363) Puppet Certified Professional 2013 (PCP006) _ Open-Future Phone

[Puppet Users] Executing a command once after an action.

2009-01-08 Thread Nico De Ranter
ge but then it runs every time puppetd gets executed after the file or package gets installed. How can I do this? Thanks in advance, Nico -- With kind regards, Nico De Ranter Senior System Administrator Sony Techsoft Centre The Corporate Village · Da Vincilaan 7-D1 · B-1935 Zaventem · Belg

Re: [Puppet Users] Re: Are these the same?

2012-11-30 Thread Johan De Wit
dependency to the included class. from the docs : This function is a superset of the ‘include’ function, adding a class relationship so that the requiring class depends on the required class. Grts Johan -- Johan De Wit Open Source Consultant Red Hat Certified Engineer(805008667232363) Puppet

Re: [Puppet Users] Re: hiera broken in puppet-3

2012-12-12 Thread Peter De Cleyn
I just did the same process of debugging you did (should learn to search this list first) and the proposed solution works for me. Did you file this as a bug yet on the puppet ticketing system (can't find it there) so I can vote ;-) Peter On Mon, Oct 29, 2012 at 7:04 PM, asq wrote: > ok, i go

[Puppet Users] creating file locations from hiera

2013-01-25 Thread Peter De Cleyn
Hi list, I ran again against a long standing bug / feature request but from a new angle: creating directories with parents ( http://projects.puppetlabs.com/issues/86). I wanted to create a module, where a path could be supplied with a class parameter. The path would be used in a rsync configurat

Re: [Puppet Users] Re: Installing Operating systems

2013-02-04 Thread Johan De Wit
//groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out. -- Johan De Wit Open Source Consultant Red Hat Certified Engineer(805008667232363) Puppet Certified Professional 2013 (PCP006) _

Re: [Puppet Users] Puppet broken in upgrade from 3.0.1 to 3.1.0

2013-02-06 Thread Johan De Wit
oglegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out. have you checked your /etc/puppet/puppet.conf, could be overwritten by the upg

Re: [Puppet Users] Re: service ressource on CentOS 6.3

2013-02-07 Thread Johan De Wit
To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out. -- Johan De Wit Open Source Consultant Red Hat Certified Engineer(805008667232363) Pu

Re: [Puppet Users] How to apply condition such that jdk doesnt download if its already downloaded in the code given

2013-02-21 Thread Johan De Wit
le and/or its affiliates. Source0: jdk-6u33-linux-i586.bin Source1: jdk-6u33-linux-x64.bin Prefix: /opt/java Group: Development/Tools Url: http://www.oracle.com/technetwork/java/javase/overview/index.html Summary: Java(TM) Platform Standard Edition Development Kit Packager: Johan De Wit BuildRoot:

[Puppet Users] Puppet User Group Belgium

2013-03-07 Thread Johan De Wit
interested in * helping setting up the user group * attending activities organized by this user group * have ideas, tips, remarks etc, Please reply on this mail, or send a PM to me. Greetings, Johan -- Johan De Wit Open Source Consultant Red Hat Certified Engineer(805008667232363) Puppet

[Puppet Users] Custom fact or function ? looking for opinion

2013-03-28 Thread Johan De Wit
end not on every node. I just wanted to here some other opinions about this issue. Thx Johan -- Johan De Wit Open Source Consultant Red Hat Certified Engineer(805008667232363) Puppet Certified Professional 2013 (PCP006) _ O

Re: [Puppet Users] Re: Custom fact or function ? looking for opinion

2013-03-28 Thread Johan De Wit
On 03/28/2013 02:20 PM, jcbollinger wrote: On Thursday, March 28, 2013 5:32:06 AM UTC-5, Johan De Wit wrote: Hi, I'm in the progress of writing custom facts to retrieve our network configuration for the nodes from the openldap ENC. I'm confused. An ENC is a servi

[Puppet Users] Belgian Puppet User group kickoff meeting sat 6 April @ loaddays

2013-03-28 Thread Johan De Wit
More detail can be found here http://www.meetup.com/Belgian-Puppet-User-Group/events/109397462/ Everyone is welcome -- Johan De Wit Open Source Consultant Red Hat Certified Engineer(805008667232363) Puppet Certified Professional 2013 (PCP006

Re: [Puppet Users] Re: Custom fact or function ? looking for opinion

2013-03-29 Thread Johan De Wit
On 03/29/2013 03:00 PM, jcbollinger wrote: On Thursday, March 28, 2013 9:03:31 AM UTC-5, Johan De Wit wrote: On 03/28/2013 02:20 PM, jcbollinger wrote: On Thursday, March 28, 2013 5:32:06 AM UTC-5, Johan De Wit wrote: Hi, I'm in the progress of writing c

Re: [Puppet Users] Modules, yum repo's & best practices

2013-04-17 Thread Johan De Wit
e done outside of puppet of course. Configuration af course with. We use a proxy in the dms zone, to gain acces to the repo server, which at this moment is hosted internally. Grts -- Johan De Wit Open Source Consultant Red Hat Certifie

Re: [Puppet Users] puppet 3 and hiera debugging

2013-05-01 Thread Johan De Wit
om. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out. -- Johan De Wit Open Source Consultant Red Hat Certified Engineer(805008667232363) Puppet Certified Professional 2013 (PCP006)

Re: [Puppet Users] hiera can't see a value on a puppet client, but the hiera app on the server can

2013-05-08 Thread Johan De Wit
cribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.

[Puppet Users] [Belgian Puppet User Group] Workshop testing puppet modules

2013-05-18 Thread Johan De Wit
Hi list, We are organising our first workshop on how to start testing modules with puppet. This will be held on Friday, 31 May, at 7 PM. Details can be found on our meetup.com page : http://www.meetup.com/Belgian-Puppet-User-Group/events/113028972/ Hope to see you there Johan -- You recei

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] Can't use conditon in a template

2013-06-04 Thread Johan De Wit
p receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.

Re: [Puppet Users] Force osfamily value

2013-06-07 Thread Johan De Wit
oups.google.com/groups/opt_out. -- Johan De Wit Open Source Consultant Red Hat Certified Engineer (805008667232363) Puppet Certified Professional 2013 (PCP006) _ Open-Future Phone +32 (0)2/255 70 70 Z

Re: [Puppet Users] using a custom class module with puppet 0.24.8

2013-06-24 Thread Johan De Wit
Visit this group at http://groups.google.com/group/puppet-users. For more options, visit https://groups.google.com/groups/opt_out. -- Johan De Wit Open Source Consultant Red Hat Certified Engineer (805008667232363) Puppet Certified Professional 2013 (PCP006) ___

Re: [Puppet Users] Dynamically assign Static IP Addresses

2013-06-26 Thread Johan De Wit
@googlegroups.com <mailto:puppet-users@googlegroups.com>. Visit this group at http://groups.google.com/group/puppet-users. For more options, visit https://groups.google.com/groups/opt_out. -- You received this message because you are subscribed

[Puppet Users] template + sign and storedconfig = mysql -> Error 400

2013-09-10 Thread Johan De Wit
rsion <%= @gpfs_version %>-<%= @gpfs_update %> +%package vfs_gpfs-%{gpfs_version} +Summary: Samba vfs_gpfs module +Group: Applications/System +Requires : gpfs.base = %{gpfs_version} +BuildRequires: gpfs.base = %{gpfs_version} + +%description vfs_gpfs-%{gpfs_version} + Grts Jo -- Johan De Wit Open

Re: [Puppet Users] rspec-puppet require syntax

2013-10-02 Thread Johan De Wit
When 'require' multiple resources, you should copy what the catalog contains : * 'require' => '[User[nginx]{:name=>"nginx"}, Exec[install_nginx]{:command=>"install_nginx"}]', in the rspec file. Thats the only way i could make it pass the test. Grts jo * On Saturday, 21 September 2013 01:

[Puppet Users] rspec and overriding :facts per context

2013-10-07 Thread Johan De Wit
ating this in every context. Any hints on where to look for a solution are welcome. I have looked at before(:each) .. but still no working solution Thx Johan -- Johan De Wit Open Source Consultant Red Hat Certified Engineer (805008667232363) Puppet Certified Professional 2013 (PCP

Re: [Puppet Users] rspec and overriding :facts per context

2013-10-08 Thread Johan De Wit
/master/spec/classes/openstack_cinder_all_spec.rb#L61 On Mon, Oct 7, 2013 at 6:26 AM, Johan De Wit <mailto:jo...@open-future.be>> wrote: Hi, I'm looking for a way to avoid repeating all necessary facts to make the catalog compile. I'm using the let function

Re: [Puppet Users] user management define once an add if required on server

2013-10-08 Thread Johan De Wit
ld create a modul for every user and add it to a server, but I think that is not a good solution. Best regards Andreas -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails fro

[Puppet Users] LAMP stack with strange dependencies

2013-10-13 Thread Harm De Weirdt
Hello everyone. I've been toying around with puppet and something happened that seems strange to me. In site.pp I have the following: > node default { > > # This is where you can declare classes for all nodes. > > # Example: > > # class { 'my_class': } > > # class { 'lamp': } > > p

Re: [Puppet Users] LAMP stack with strange dependencies

2013-10-13 Thread Harm De Weirdt
Indeed, I should have paid more attention t the actual error. Thanks for the info. Harm On Sunday, October 13, 2013 9:18:37 PM UTC+2, Ramin K wrote: > > On 10/13/2013 1:47 AM, Harm De Weirdt wrote: > > Hello everyone. > > > > I've been toying around with puppe

[Puppet Users] Re: Custom type and provider development

2013-10-14 Thread Ringo De Smet
Rich, On Sunday, 7 April 2013 08:04:52 UTC+2, Rich Siegel wrote: > > In other news, I am about to mark functional the baremetal build. I > managed to inject puppet/facter into WinPE and can take a host through a > fully unattended install of win2008r2 including manage unattend.xml as a > file

Re: [Puppet Users] Using puppetlabs_spec_helper on Windows 7

2013-10-28 Thread Johan De Wit
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 post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/gro

Re: [Puppet Users] Puppet exec error on windows 2008 server

2013-10-29 Thread Ringo De Smet
On Tuesday, 24 September 2013 15:59:15 UTC+2, Josh Cooper wrote: > > > > On Tuesday, September 24, 2013, Harsh Desai wrote: > >> Hi >> >> I am stuck at a very basic issue in my the following exec resource. I am >> executing this on windows 2008 R2 server. >> >> When I apply this manifest, puppet

Re: [Puppet Users] Re: Hiera vs OpenLDAP

2013-10-30 Thread Johan De Wit
t https://groups.google.com/d/msgid/puppet-users/1497c323-e6bb-46f8-ae26-5b785e89b6e4%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Johan De Wit Open Source Consultant Red Hat Certified Engineer (805008667232363) Puppet Certified

  1   2   3   >