Re: [Puppet Users] puppet web serve is not working

2014-10-12 Thread Stefan Goethals
Hi, Puppet does have a 'web server' but it does not offer a user interface. There is nothing for a 'human' to see at the address of the master. Only Puppet agents are supposed to talk to it. To recap : There is nothing for a user to see... Try a puppet run using # puppet agent -t --server

Re: [Puppet Users] Managing AWS instances using existing open source puppet master

2014-03-24 Thread Stefan Goethals
It is as simple as the firewall setting you mention. Regards, Stefan Zipkid Goethals. On Mon, Mar 24, 2014 at 8:03 AM, kdo k...@hampels.com.au wrote: Hello all, Was hoping for some guidance around integrating AWS with our current puppet environment. Is it as simple as setting the

Re: [Puppet Users] custom puppet facts

2013-03-11 Thread Stefan Goethals
Facts automatically get distributed to all nodes with pluginsync. You need to write them in such a way that they will only create the fact on the nodes that need it. Stefan - Zipkid - Goethals On Mon, Mar 11, 2013 at 1:31 PM, vioilly oliverle...@gmail.com wrote: I have written a custom puppet

Re: [Puppet Users] include statement not being seen

2013-03-08 Thread Stefan Goethals
I think you might have a conflict problem between the node and class name as they are both the same Stefan - Zipkid - Goethals On Fri, Mar 8, 2013 at 6:54 PM, Matt Zagrabelny mzagr...@d.umn.edu wrote: Greetings, I am getting a perplexing message on a client: Mar 8 11:49:06 matlab

Re: [Puppet Users] Issues with conditionals Hiera

2013-02-28 Thread Stefan Goethals
--- cagefs_enabled:- 'false' should be ---cagefs_enabled: 'false' You were creating an arrray named cagefs_enabled with the first element as true... Stefan - Zipkid - Goethals. On Thu, Feb 28, 2013 at 9:44 PM, c...@hawkhoststatus.com wrote: Hello everyone! I hope your Thursdays are

Re: [Puppet Users] Using $name in resources?

2013-02-28 Thread Stefan Goethals
class yumrepos { my_yumrepo{ ['a','b']: } } define my_yumrepo() { yumrepo { $name: descr=yum repo $name, baseurl=http://someurl/$name;; } } Should do the trick. The problem is the $name variable is not usable when calling.. only in the called type. Regards, Stefan -

Re: [Puppet Users] Re: PuppetDB KahaDB db.data leak

2013-02-14 Thread Stefan Goethals
License: ASL 2.0 Signature : RSA/SHA1, Thu 20 Dec 2012 09:08:52 PM UTC, Key ID 1054b7a24bd6ec30 URL : http://github.com/puppetlabs/puppetdb Summary : Puppet Centralized Storage Daemon Description : Puppet Centralized Storage. On Thu, Feb 14, 2013 at 12:26 PM, Stefan

Re: [Puppet Users] Re: PuppetDB KahaDB db.data leak

2013-02-14 Thread Stefan Goethals
[root@kangaroo ~]$cd /var/lib/puppetdb/mq/localhost/KahaDB [root@kangaroo KahaDB]$ls -al total 9508 drwxr-xr-x 2 puppetdb puppetdb 4096 Feb 14 11:08 . drwxr-xr-x 4 puppetdb puppetdb 4096 Jan 14 09:38 .. -rw-r--r-- 1 puppetdb puppetdb 33030144 Feb 14 12:23 db-168.log -rw-r--r-- 1 puppetdb

Re: [Puppet Users] Looking for help for Puppet community stand at FOSDEM

2013-01-14 Thread Stefan Goethals
I added my info on the wiki. Regards, Stefan - Zipkid - Goethals On Mon, Jan 14, 2013 at 7:45 PM, Dawn Foster d...@puppetlabs.com wrote: On Mon, Jan 14, 2013 at 7:31 AM, Walter Heck walterh...@gmail.com wrote: Anyone interested in helping out is requested to add their interest here:

Re: [Puppet Users] puppetdb dashboard

2013-01-08 Thread Stefan Goethals
You need to configure PuppetDB to listen on another address than localhost for the performance dashboard. http://docs.puppetlabs.com/puppetdb/1/configure.html#jetty-http-settings Regads, Stefan - Zipkid - Goethals On Tue, Jan 8, 2013 at 9:52 PM, Luke lutay...@gmail.com wrote: Hi, Puppetdb

Re: [Puppet Users] Looking for help for Puppet community stand at FOSDEM

2012-12-21 Thread Stefan Goethals
I'm willing. Regards, Stefan - Zipkid - Goethals On Fri, Dec 21, 2012 at 9:18 AM, Walter Heck - OlinData.com walterh...@olindata.com wrote: Hi all, Last week I put in a last minute request for a Puppet community booth at the upcoming FOSDEM conference in Brussels on Feb 2nd3rd. I

Re: [Puppet Users] Reg : GitHubIntegration

2012-12-18 Thread Stefan Goethals
https://github.com/rodjek/librarian-puppet Regards, Zipkid On Tue, Dec 18, 2012 at 5:18 AM, krishna bhaskara rao krishna...@gmail.comwrote: Hi, How to integrate GitHub with Puppet master or agent. My requirement is I have file in GitHub Repository with different versions, I want to

Re: [Puppet Users] in-module data with hiera

2012-12-14 Thread Stefan Goethals
...@devco.net To: puppet-users@googlegroups.com Sent: Thursday, December 13, 2012 5:58:42 PM Subject: Re: [Puppet Users] in-module data with hiera - Original Message - From: Stefan Goethals zipkid@gmail.com To: puppet-users@googlegroups.com Sent: Thursday, December 13, 2012 5

Re: [Puppet Users] in-module data with hiera

2012-12-13 Thread Stefan Goethals
: - Original Message - From: Jakov Sosic jso...@srce.hr To: puppet-users@googlegroups.com Sent: Wednesday, December 5, 2012 11:15:57 PM Subject: Re: [Puppet Users] Re: in-module data with hiera On 12/05/2012 09:45 PM, Stefan Goethals wrote: Not having any problem with osfamily i agree with John

Re: [Puppet Users] Puppet client runs outside of office hours

2012-12-12 Thread Stefan Goethals
We use this cron { puppet: ensure = present, command = $ppt_cmd, user= 'root', hour= fqdn_rand(6), minute = fqdn_rand(60) } so puppet runs happen 'randomly between midnight and 05:59 Regards, Stefan - Zipkid - Goethals. On Wed, Dec 12, 2012 at 6:23 AM, DenMat

Re: [Puppet Users] Poll for thoughts on hierifying modules and OS default differences

2012-12-10 Thread Stefan Goethals
I can only strongly suggest you look at the new Hiera-in-modules ticket and pull request by R.I.Pienaar as it really solves a lot of problems many people encounter in this situation. It needs more testing and debugging so all help on this is very welcome. Regards, Stefan Goethals. On Fri, Dec 7

Re: [Puppet Users] How to group hosts?

2012-12-09 Thread Stefan Goethals
Serving facts to nodes via puppet... That means you already know those facts in puppet so you don't need to serve them to the nodes anymore :-) On Sun, Dec 9, 2012 at 1:31 AM, Jakov Sosic jso...@srce.hr wrote: On 12/06/2012 06:44 PM, Stefan Goethals wrote: Hi, You could use facter-dot-d

Re: [Puppet Users] gem error installing rack

2012-12-06 Thread Stefan Goethals
This is not a puppet error.. But i think the name rubygems.org is not resolving on your server and/or a firewall is blocking access to the site... Regards, Stefan. On Thu, Dec 6, 2012 at 3:32 PM, DJames dominicrja...@gmail.com wrote: # gem install rack ERROR: http://rubygems.org/ does

Re: [Puppet Users] How to group hosts?

2012-12-06 Thread Stefan Goethals
/hiera.yaml :hierarchy: - %{servertype} and in your hieradata dir a file storage_node.yaml and web_node.yaml with the settings you like. Another way is to set the param servertype via an ENC and use the same hierarchy and files. Regards, Stefan Goethals On Thu, Dec 6, 2012 at 6:27 PM, Jakov

Re: [Puppet Users] in-module data with hiera

2012-12-05 Thread Stefan Goethals
the module itself. Great work! Thanks, Stefan Goethals. ps. Just let me know if you need more testing to be done. On Tue, Dec 4, 2012 at 11:34 PM, Garrett Honeycutt garr...@puppetlabs.comwrote: On 12/4/12 2:38 PM, R.I.Pienaar wrote: - Original Message - From: ZipKid zipkid

Re: [Puppet Users] Re: in-module data with hiera

2012-12-05 Thread Stefan Goethals
Not having any problem with osfamily i agree with John. A default to 'common' would suffice i believe. Stefan. On Wed, Dec 5, 2012 at 3:43 PM, jcbollinger john.bollin...@stjude.orgwrote: On Sunday, September 30, 2012 4:37:29 AM UTC-5, R.I. Pienaar wrote: I propose extending the module

Re: [Puppet Users] Re: Puppet 3.0.0 and Hiera

2012-10-07 Thread Stefan Goethals
Sorry to burst you bubble The puppet backend has been 'broken' (intentionally?) - https://projects.puppetlabs.com/issues/16321 - https://mail.google.com/mail/u/1/?ui=2shva=1#search/label%3Apuppet-users+pienaar/13a168982ad38854 Lots needs fixing... Zipkid (Stefan) On Fri, Oct 5, 2012 at

Re: [Puppet Users] Help me name a class in the new puppetdb module!

2012-09-17 Thread Stefan Goethals
Why not simply puppetdb::server for the ... well, puppetdb server and puppetdb::client for... the client, as that is exactly what the puppetmaster is to puppetdb? Regards, Stefan. On Sat, Sep 15, 2012 at 4:03 PM, Ashley Penney apen...@gmail.com wrote: I kind of feel like the reason you're

Re: [Puppet Users] push config to agent behind firewall

2012-09-10 Thread Stefan Goethals
# puppet kick http://docs.puppetlabs.com/man/kick.html Regards, Stefan. On Mon, Sep 10, 2012 at 11:30 AM, Alex Greif a...@greifdesign.net wrote: Hi, due to our company security policy, we cannot allow the agents in the DMZ to pull the config catalog from the puppet master, that sits behind

Re: [Puppet Users] Questions for puppet 2.6.8 client certificate management

2011-06-17 Thread Stefan Goethals
puppet agent --test (-t) Zipkid On 17 Jun 2011, at 14:49, TJ Yang wrote: How do I initiate a certificate request without going into non-daemon mode ? According to Pro Puppet book, so far the only way I know that can trigger a certficate request with puppet master is like this puppet

Re: [Puppet Users] pupet dashboard taking more than 10 minutes to destroy a node

2011-03-24 Thread Stefan Goethals
On 24 Mar 2011, at 16:57, Arnau Bria wrote: Hi all, I've noticed that puppet-dashboard takes a lot of time to refresh some webs, but today, I've started to remove some old nodes and it takes more than 10 minutes to remove one. The host hasn't a really high load: [root@puppet01 ~]#

Re: [Puppet Users] Feature request: queued triggers

2010-12-08 Thread Stefan Goethals
On Wed, Dec 8, 2010 at 3:10 PM, Martijn Grendelman mart...@iphion.nlwrote: Hi, We have several situations where it is desireable to do catalog runs on demand. We have 'puppetrun' for that, but it can -and does- happen, that a catalog run is already in progress when we trigger a run by hand.

Re: [Puppet Users] Query facter 'facts' from webapp

2010-11-09 Thread Stefan Goethals
. The structure of the db is quite simple. Regards, Stefan Goethals. -- You received this message because you are subscribed to the Google Groups Puppet Users group. To post to this group, send email to puppet-us...@googlegroups.com. To unsubscribe from this group, send email to puppet-users

Re: [Puppet Users] [0.25.5] Default provider

2010-10-13 Thread Stefan Goethals
A few things. David Schmitt has made mysql modules. http://forge.puppetlabs.com/DavidSchmitt/mysql maybe you can take a look at them. Even with his modules i get the same error when configuring a new node. The problem i saw is that the mysql plugins are synced at the beginning of a run with