[Puppet Users] What is ActiveMQ Broker?

2013-03-12 Thread snlsinghal . 9
Can anybody tell me what exactly ActiveMQ does? Is it a storage of messages produced by producer and ready to consume by consumer? M i understanding it correctly or not? Please tell me? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubs

Re: [Puppet Users] PuppetDB http web interface user access

2013-03-12 Thread Zane Williamson
Ah yes, that was probably the issue, forgot to sue a2enmod for rewriterule! Appreciate your input on this. -Zane On Tue, Mar 12, 2013 at 9:40 PM, Ken Barber wrote: > Great! I'm more of a fan of RewriteRule because when you're mixing it > with rewrites the ordering is more obvious, but in thi

Re: [Puppet Users] PuppetDB http web interface user access

2013-03-12 Thread Ken Barber
Great! I'm more of a fan of RewriteRule because when you're mixing it with rewrites the ordering is more obvious, but in this case ProxyPass works well enough. Looks like you're using Debian, do you have to use a2enmod perhaps to get RewriteRule to work? Either way thanks for sharing the config th

Re: [Puppet Users] PuppetDB http web interface user access

2013-03-12 Thread Zane Williamson
Good call. The advice was wise! I had some issues using RewriteEngine (probably how I have Apache setup), but instead with with ProxyPass and it is working well. ProxyPass / http://localhost:8080/ AuthType basic AuthName "Restrited Files" AuthBasicProvider file AuthUs

Re: [Puppet Users] node based regex entries

2013-03-12 Thread Iain Sutton
rubular.com suggests that the regex should be ^sbx-.*-\d\d$ On 13 March 2013 12:16, Mike Reed wrote: > Hello all, > > I've been trying to configure node-based regex entries and puppet seems to > be giving me a hard time with this one. > > Our system naming convention is this: > > sbx--. > > For

[Puppet Users] node based regex entries

2013-03-12 Thread Mike Reed
Hello all, I've been trying to configure node-based regex entries and puppet seems to be giving me a hard time with this one. Our system naming convention is this: sbx--. For instance, we have: sbx-circle-01 and sbx-square-01 both on the same network. I'm using this entry: node /^sbx-[^\

Re: [Puppet Users] Re: Restructure puppet modules

2013-03-12 Thread Peter Brown
I would recommend having a look at the modules on puppet forge to give you a kickstart into the process. http://forge.puppetlabs.com/ There are a bunch of useful modules in there. On 12 March 2013 19:16, Andrea Crotti wrote: > Mm ok then I'll drop the idea and try to go with modules.. > The ot

Re: [Puppet Users] Re: Windows Remote Desktop Services (Could not find a suitable provider for dism)

2013-03-12 Thread Rich Siegel
I believe you need to use the copy on github as there was an issue with using 32/64 dism iirc -- 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 puppet-users+unsub

[Puppet Users] Re: Organization of puppet classes

2013-03-12 Thread Mike Reed
Thanks very much Joe. I'll take a look and go from there. Much appreciated. Cheers, Mike On Monday, March 11, 2013 5:21:01 PM UTC-7, joe wrote: > > You want roles and profiles: > http://www.craigdunn.org/2012/05/239/ > > On Monday, March 11, 2013 6:02:15 PM UTC-6, Mike Reed wrote: >> >> Hello

Re: [Puppet Users] syntax checking nodes, don't allow global scope

2013-03-12 Thread Denmat
Hi, None that I know of - its the same as putting includes in site.pp. Education and review are your best bet. Den (That said, very verbose rspec tests may pick it up for very specific cases - but it would be a bit of work.) On 12/03/2013, at 23:31, Rudy Gevaert wrote: > Hi, > > We have b

[Puppet Users] Re: Basic stuff, I can't seem to get right, Could not retrieve information from environment production source(s)

2013-03-12 Thread Ellison Marks
If you haven't touched it, it should be fine. Other things to keep in mind: The puppetmaster is probably running as the user puppet, not root, and even if the file itself is readable by all, the intervening directories might be more restrictive. On Tuesday, March 12, 2013 11:02:01 AM UTC-7, Rac

Re: [Puppet Users] Shorten require list

2013-03-12 Thread Fabrice Bacchella
Le 12 mars 2013 à 17:46, jcbollinger a écrit : > > This works too : > > package{'needed for exec': > name => $packages, > ensure => present, > } > > exec { "foo": require => Package['needed for exec'] } > > Less object, so a smaller catalog, and faster because your package tool is

Re: [Puppet Users] multi-line content= construct for puppet resource file command

2013-03-12 Thread Robert Citek
Just preference and consistency. We've been using puppet as a substitute for shell commands that use the 'command [options] arguments ... ' pattern and 'puppet resource ...' matches that pattern nicely. But if by using here-documents we can match the pattern pretty closely and we gain the additi

Re: [Puppet Users] Re: Only running database_grant the first time.

2013-03-12 Thread Ramin K
refreshonly is not a meta parameter and only applies to the exec type. http://docs.puppetlabs.com/references/latest/metaparameter.html Also it is not a parameter of the puppetlabs-mysql database_grant type. Stuart, Best to link to the module you are using, how you're calling it, and the err

Re: [Puppet Users] Re: Windows Remote Desktop Services (Could not find a suitable provider for dism)

2013-03-12 Thread jim
Hello all I think this is an actual bug with either puppet or puppet dism and not sure how to resolve this I've installed the puppet dism module and written my manifest class remote_desktop_services { dism { 'AppServer': ensure => present, } dism { 'AppServer-UI': ensure => present, } dism { 'P

[Puppet Users] Re: Basic stuff, I can't seem to get right, Could not retrieve information from environment production source(s)

2013-03-12 Thread Race Boyer
No, I've never looked at it before. Should it be changed or remain unchanged? Or configured to allow one to access modules? On Tuesday, March 12, 2013 12:45:51 PM UTC-5, Ellison Marks wrote: > > Might be an auth.conf problem. Have you changed anything in there? > > On Tuesday, March 12, 2013 10:1

[Puppet Users] Re: Basic stuff, I can't seem to get right, Could not retrieve information from environment production source(s)

2013-03-12 Thread Ellison Marks
Might be an auth.conf problem. Have you changed anything in there? On Tuesday, March 12, 2013 10:16:02 AM UTC-7, Race Boyer wrote: > > I really hate to bother everyone with with something I'm sure is super > basic, but I'm stumped. > > I've read the module serving guide, I checked my syntax with

Re: [Puppet Users] PuppetDB http web interface user access

2013-03-12 Thread Ken Barber
I think most people are implementing either an Apache or NGinx proxy in front of PuppetDB for this purpose. For Apache, should be pretty easy to do with proxy based RewriteRule's in Apache, and within the same virtualhost definition you should be able to enforce authentication. For example: Re

[Puppet Users] Re: File resources: using source much slower than content

2013-03-12 Thread jcbollinger
On Monday, March 11, 2013 4:40:09 PM UTC-5, Tim Moorhouse wrote: > > I'm moving from version 2.7.19 to 3.1.0 and am running into an issue with > file resources. > > All of them using a "source => '...'" attribute to pull their contents > from the master are taking about 5 seconds longer than th

[Puppet Users] Announce: Puppet Enterprise 2.7.2 Available [ Security Release ]

2013-03-12 Thread Moses Mendoza
Dear Puppet Enterprise Users, Puppet Enterprise 2.7.2 is now available. This is a security release of Puppet Enterprise. All users of Puppet Enterprise are strongly encouraged to upgrade when possible to Puppet Enterprise 2.7.2. Puppet Enterprise 2.7.2 includes fixes to address CVE-2013-1640, CV

[Puppet Users] Announce: Puppet 3.1.1 Available [ Security Release ]

2013-03-12 Thread Moses Mendoza
Puppet 3.1.1 is now available. 3.1.1 addresses several security vulnerabilities discovered in the 3.x line of Puppet. These vulnerabilities have been assigned Mitre CVE numbers CVE-2013-1640, CVE-2013-1652, CVE-2013-1653, CVE-2013-1654, CVE-2013-1655 and CVE-2013-2275. All users of Puppet 3.1.0 an

[Puppet Users] Announce: Puppet Enterprise 1.2.7 Available [ Security Release ]

2013-03-12 Thread Moses Mendoza
Dear users of Puppet Enterprise 1.2.6 and earlier, Puppet Enterprise 1.2.7 is now available. This is a security release of Puppet Enterprise. Users of Puppet Enterprise 1.2.6 and earlier who are unable to upgrade to the current version of Puppet Enterprise, 2.7.2, are strongly encouraged to upgra

[Puppet Users] Announce: Puppet 2.6.18 Available [ Security Release ]

2013-03-12 Thread Moses Mendoza
Puppet 2.6.18 is now available. 2.6.18 addresses several security vulnerabilities discovered in the 2.6.x line of Puppet. These vulnerabilities have been assigned Mitre CVE numbers CVE-2013-1640, CVE-2013-1652, CVE-2013-1654, CVE-2013-2274, and CVE-2013-2275. All users of Puppet 2.6.17 and earlier

[Puppet Users] Announce: Puppet 2.7.21 Available [ Security Release ]

2013-03-12 Thread Moses Mendoza
Puppet 2.7.21 is now available. 2.7.21 addresses several security vulnerabilities discovered in the 2.7.x line of Puppet. These vulnerabilities have been assigned Mitre CVE numbers CVE-2013-1640, CVE-2013-1652, CVE-2013-1653, CVE-2013-1654, CVE-2013-1655 and CVE-2013-2275. All users of Puppet 2.7.

[Puppet Users] Basic stuff, I can't seem to get right, Could not retrieve information from environment production source(s)

2013-03-12 Thread Race Boyer
I really hate to bother everyone with with something I'm sure is super basic, but I'm stumped. I've read the module serving guide, I checked my syntax with puppet-lint, I think I have everything in place, yet I keep getting the same error: Tue Mar 12 11:49:28 -0500 2013 Puppet (notice): Starti

Re: [Puppet Users] Shorten require list

2013-03-12 Thread jcbollinger
> This works too : > > package{'needed for exec': > name => $packages, > ensure => present, > } > > exec { "foo": require => Package['needed for exec'] } > > Less object, so a smaller catalog, and faster because your package tool is > run once, not one time for each package. I have

[Puppet Users] Re: Only running database_grant the first time.

2013-03-12 Thread joe
refreshonly should be built in to all types. Did you actually try it, or did you just not see any docs saying it was there? On Tuesday, March 12, 2013 4:45:58 AM UTC-6, Stuart Grimshaw wrote: > > I'm using puppet through Vagrant to manage my dev VM, and as part of that > I have a few database g

[Puppet Users] Re: Variables in define are not being constructed as thought

2013-03-12 Thread jcbollinger
On Tuesday, March 12, 2013 10:53:46 AM UTC-5, phundisk wrote: > > I have a define which > > define testing1::instance ( >$hostSuffix = "-$environment", >$testingDb = "db1$hostSuffix$dnsDomainInt", > ) > > In my nodes.pp I explicitly set the $environment variable. However when I > use

[Puppet Users] Variables in define are not being constructed as thought

2013-03-12 Thread phundisk
I have a define which define testing1::instance ( $hostSuffix = "-$environment", $testingDb = "db1$hostSuffix$dnsDomainInt", ) In my nodes.pp I explicitly set the $environment variable. However when I use the property 'testingDb' in a template, it comes out as only 'db1' Is there some

[Puppet Users] PuppetDB http web interface user access

2013-03-12 Thread Zane Williamson
Hi All, Has anyone figured out a nice way to restrict user access to puppetdb's http web interface? Such as a .htaccess method or something similar? I would prefer something along those lines instead of setting up firewall rules. -Zane -- You received this message because you are subscribed

Re: [Puppet Users] Puppet modules add to Agent

2013-03-12 Thread Felix Frank
On 03/08/2013 07:59 AM, Jithin Xavier wrote: > Hi All, > > If we have couple modules in Master server ,we can specifically add some > modules to our agent using this command. > > puppet agent --test --tags= No, you do not. Instead, you have the agent apply only resources from within the given m

[Puppet Users] Puppet 3.1 - Error: Could not run: undefined method `prune_parameters' for nil:NilClass - fresh install on RHEL 6.4

2013-03-12 Thread Byron Miller
Trying to get my puppet up and running but running into a slight problem - trying to view a resource I get an error for undefined method [root@puppet puppet-dashboard]# puppet resource user root Error: Could not run: undefined method `prune_parameters' for nil:NilClass [root@puppet puppet-dashbo

Re: [Puppet Users] Re: PuppetDB queue problem

2013-03-12 Thread Deepak Giridharagopal
On Tue, Mar 12, 2013 at 6:38 AM, ak0ska wrote: > I think my previous comment just got lost. > > So, I cut three occurrences of this error from the database log and the > corresponding part from the puppetdb log. I removed the hostnames, I hope > it's still sensible: http://pastebin.com/yvyBDWQE >

Re: [Puppet Users] Moving to Chef..

2013-03-12 Thread Jerald Sheets
Translation: My Solaris skills are such that I can't integrate a simple scripting overlay plus configuration management framework on it, so I'm going to go find whatever spells it out for me so I don't have to be bothered to grow and actually learn something. Geez. (sorry, guys... grumpy mo

Re: [Puppet Users] Re: Windows Firewall Question

2013-03-12 Thread Alex Farhadi
Excellent, thank you for the link. On Tue, Mar 12, 2013 at 10:40 AM, Paul Tötterman wrote: > Does anyone know of this provider? If not I can start to make one with >> netsh but it will probably take me a while >> > > I really suggest you do it via the proper firewall COM API, e.g. with > powers

Re: [Puppet Users] Re: Windows Firewall Question

2013-03-12 Thread Paul Tötterman
> > Does anyone know of this provider? If not I can start to make one with > netsh but it will probably take me a while > I really suggest you do it via the proper firewall COM API, e.g. with powershell: http://stackoverflow.com/questions/11956291/how-can-i-add-a-widows-firewall-rule-with-a-c

Re: [Puppet Users] Re: Moving to Chef..

2013-03-12 Thread Jonathan Gazeley
No solution is ever 100% perfect. However, it seems a bit extreme to discard all the investment in time and switch to a different system, which will probably come with its own entertaining selection of bugs and limitations. (Disclaimer: I have no experience with Chef, but I stand by my opening

Re: [Puppet Users] Could not find declared class - running puppet standalone

2013-03-12 Thread Felix Frank
Hi, On 03/07/2013 07:55 PM, Drew Sheneman wrote: > |class { 'mysql': }| > > |lstat("/etc/puppet/mysql.rb", 0x7fffa1b7bb10) = -1 ENOENT (No such file or > directory)| Is this the only file it tries and opens? Because it looks awfully wrong. -- You received this message because you are subscrib

[Puppet Users] Re: Hiera top down data?

2013-03-12 Thread jcbollinger
On Monday, March 11, 2013 7:44:08 PM UTC-5, Ellison Marks wrote: > > I think what you're describing fits exported resources. That is, each node > would get it's data from hiera and export it, and then the main node would > spaceship it all up. > > http://docs.puppetlabs.com/puppet/3/reference/l

Re: [Puppet Users] Re: Windows Firewall Question

2013-03-12 Thread phundisk
Does anyone know of this provider? If not I can start to make one with netsh but it will probably take me a while On Thursday, March 7, 2013 9:52:17 PM UTC-5, Nan Liu wrote: > > On Thu, Mar 7, 2013 at 5:50 PM, ad >wrote: > >> Hey David >> >> Below are some examples. Note these are used on embedd

[Puppet Users] Re: puppet agent and android or IPhone ?

2013-03-12 Thread jcbollinger
On Tuesday, March 12, 2013 5:26:05 AM UTC-5, bernard...@morpho.com wrote: > > There is no anwser to the question about puppet and Android, does that > mean that there is no Puppet agent for android ? > You gave it less than one day, plus you hijacked a thread to pose your question in. Again.

Re: [Puppet Users] HELP:Custom function didn't work

2013-03-12 Thread Felix Frank
Hi, On 03/07/2013 03:10 AM, Nicolas wrote: > #hosttype.rb > > require "mysql" > > module Puppet::Parser::Functions > > newfunction(:hosttype, :type => :rvalue, :doc => "Gets host type > from db.") do |args| > > dbh = Mysql.real_connect("mysql_server_ip", "username", > "password", "

[Puppet Users] Windows + Python Installation + pip + PATH environment variable

2013-03-12 Thread Rich Siegel
Have you tried changing your path via setx unattend? Programmatically changing it (a la the registry provider) won't take effect according to http://msdn.microsoft.com/en-us/library/ms682653%28v=VS.85%29.aspx You might also try forcing a child shell through running a sub cmd /k or similar mea

[Puppet Users] Re: Moving to Chef..

2013-03-12 Thread Phips
Looks like a trolling to me Bill, I'm with you. Can't see what the problem is, it works just fine. On Tuesday, 12 March 2013 12:01:08 UTC, Bill Proud wrote: > > Really? I use it all the time with Solaris - it works just fine. > > Op dinsdag 12 maart 2013 11:52:37 UTC+1 schreef Rajeev Iyer het vo

Re: [Puppet Users] Re: PuppetDB queue problem

2013-03-12 Thread ak0ska
I think my previous comment just got lost. So, I cut three occurrences of this error from the database log and the corresponding part from the puppetdb log. I removed the hostnames, I hope it's still sensible: http://pastebin.com/yvyBDWQE The unversioned api warnings are not from the masters. Th

Re: [Puppet Users] multi-line content= construct for puppet resource file command

2013-03-12 Thread Felix Frank
Hi, at first glance, it doesn't seem to be possible. I had never thought of using puppet resource in this way. Is there a reason why you prefer it over puppet apply? On 03/06/2013 07:49 AM, Robert Citek wrote: > Hello all, > > How does one enter multi-line content using 'puppet resource file ..

[Puppet Users] syntax checking nodes, don't allow global scope

2013-03-12 Thread Rudy Gevaert
Hi, We have been bitten twice by the following. We group the configuration or our nodes in several files. nodes.d/group1.pp nodes.d/group2.pp ... Now twice people have accidently added some statements that are put in the global scope... which are then applied to all nodes: The example is s

Re: [Puppet Users] Shorten require list

2013-03-12 Thread Fabrice Bacchella
Le 12 mars 2013 à 12:24, Gergo Erdosi a écrit : > Hi David, > > Nice, didn't know I can use multiple packages inside Package. Thanks! > > Gergo Erdosi > > On Tue, Mar 12, 2013 at 12:19 PM, David Schmitt wrote: >> On 12.03.2013 11:45, ge...@timble.net wrote: >>> >>> Hi, >>> >>> I have an Ex

Re: [Puppet Users] Puppet with Passenger - 403 Forbidden

2013-03-12 Thread Gavin Williams
Hmmm, v.strange... I've just reverted the auth.conf change, and it appears to be working as expected... :s So sounds like there was another issue at play... Will see if I can replicate it... Cheers Gavin On Tuesday, 12 March 2013 09:26:15 UTC, Dominic Cleal wrote: > > On 12/03/13 09:09, G

[Puppet Users] Re: Moving to Chef..

2013-03-12 Thread Bill Proud
Really? I use it all the time with Solaris - it works just fine. Op dinsdag 12 maart 2013 11:52:37 UTC+1 schreef Rajeev Iyer het volgende: > > Too many issues when it comes to Solaris installation. So moving to Chef.. > > Thanks all.. > -- You received this message because you are subscribed

Re: [Puppet Users] Shorten require list

2013-03-12 Thread Gergo Erdosi
Hi David, Nice, didn't know I can use multiple packages inside Package. Thanks! Gergo Erdosi On Tue, Mar 12, 2013 at 12:19 PM, David Schmitt wrote: > On 12.03.2013 11:45, ge...@timble.net wrote: >> >> Hi, >> >> I have an Exec which requires a lot of packages (15-20): >> >> Exec { 'name': >>

Re: [Puppet Users] Shorten require list

2013-03-12 Thread David Schmitt
On 12.03.2013 11:45, ge...@timble.net wrote: Hi, I have an Exec which requires a lot of packages (15-20): Exec { 'name': ... require => [ Package['first'], Package['second'], Package['third'], ... ] } Is there a way to shorten this list and make it easier to read? You can use requir

Re: [Puppet Users] Shorten require list

2013-03-12 Thread gergo
I know, this is not the first time I hear packages are the preferred way, and I completely agree. We will look into packaging later, but for now we needed to get the script to work. This is the first version, I already have ideas how to improve it. Gergo Erdosi On Tuesday, March 12, 2013 12:1

Re: [Puppet Users] Shorten require list

2013-03-12 Thread R.I.Pienaar
- Original Message - > From: ge...@timble.net > To: puppet-users@googlegroups.com > Sent: Tuesday, March 12, 2013 11:04:53 AM > Subject: Re: [Puppet Users] Shorten require list > > Hi, > > Thanks, I will look into tags, it could be solution indeed. I also thought > about moving those pa

Re: [Puppet Users] Shorten require list

2013-03-12 Thread gergo
Hi, Thanks, I will look into tags, it could be solution indeed. I also thought about moving those packages into a separate class (eg. packages.pp), was just wondering what my options are if I leave them in install.pp. Gergo Erdosi On Tuesday, March 12, 2013 11:57:41 AM UTC+1, R.I. Pienaar wro

Re: [Puppet Users] Shorten require list

2013-03-12 Thread gergo
Hi Matt, It installs PHP from source. The required packages are mostly libraries (libxml2-dev, libpcre3-dev, etc). Here is the file if it helps to better understand my problem: https://www.assembla.com/code/nooku-server/git/nodes/master/puppet/modules/php/manifests/install.pp The exec is on lin

Re: [Puppet Users] Shorten require list

2013-03-12 Thread R.I.Pienaar
- Original Message - > From: "Matthew Burgess" > To: puppet-users@googlegroups.com > Sent: Tuesday, March 12, 2013 10:52:05 AM > Subject: Re: [Puppet Users] Shorten require list > > On Tue, Mar 12, 2013 at 10:45 AM, wrote: > > Hi, > > > > I have an Exec which requires a lot of package

[Puppet Users] Moving to Chef..

2013-03-12 Thread Rajeev Iyer
Too many issues when it comes to Solaris installation. So moving to Chef.. Thanks all.. -- 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 puppet-users+unsubscr.

Re: [Puppet Users] Shorten require list

2013-03-12 Thread Matthew Burgess
On Tue, Mar 12, 2013 at 10:45 AM, wrote: > Hi, > > I have an Exec which requires a lot of packages (15-20): > > Exec { 'name': > ... > require => [ Package['first'], Package['second'], Package['third'], ... ] > } > > Is there a way to shorten this list and make it easier to read? 15-20 packa

[Puppet Users] Only running database_grant the first time.

2013-03-12 Thread Stuart Grimshaw
I'm using puppet through Vagrant to manage my dev VM, and as part of that I have a few database grants that I run after creating users, but when I subsequently run vagrant up or provision these grants fail (because of some changes I make to the mysql config after they have been created.) I'm u

[Puppet Users] Shorten require list

2013-03-12 Thread gergo
Hi, I have an Exec which requires a lot of packages (15-20): Exec { 'name': ... require => [ Package['first'], Package['second'], Package['third'], ... ] } Is there a way to shorten this list and make it easier to read? Gergo Erdosi -- You received this message because you are subscribed

[Puppet Users] RE: puppet agent and android or IPhone ?

2013-03-12 Thread GRANIER Bernard (MORPHO)
There is no anwser to the question about puppet and Android, does that mean that there is no Puppet agent for android ? Cordialement, Bernard Granier CE Plateforme Système bernard.gran...@morpho.com 01 58 11 32 51 -Original Message- From: puppet-users@googlegroups.com [mailto:puppet-us

Re: [Puppet Users] Error: stack level too deep

2013-03-12 Thread Luca Gioppo
I'm using puppet-dashboard with MySQL (I know is deprecated, but we started with this model before puppetDB and I hope we'll manage to use it for a bit longer) I had a few problems in installing the active records: I install the puppet master machine with scripts and this run didn't manage to insta

Re: [Puppet Users] Error: stack level too deep

2013-03-12 Thread Matthew Burgess
On Mon, Mar 11, 2013 at 9:25 PM, Luca Gioppo wrote: > I'm running a previously working set of modules with the Puppet master > version 3.1.0-rc2. > > I'm getting the Error: stack level too deep On a complete hunch, what version of activerecord or the other active* Ruby modules are you running?

Re: [Puppet Users] Issue with Mcollective on puppet master and agent

2013-03-12 Thread R.I.Pienaar
- Original Message - > From: "Sonal Singhal" > To: puppet-users@googlegroups.com > Sent: Tuesday, March 12, 2013 9:47:41 AM > Subject: [Puppet Users] Issue with Mcollective on puppet master and agent > > Hello guys, >I have installed Mcollective server on puppet agent an

[Puppet Users] Issue with Mcollective on puppet master and agent

2013-03-12 Thread Sonal Singhal
Hello guys, I have installed Mcollective server on puppet agent and Mcollective client and ActiveMQ on puppet master and they are working fine. I m able to ping mcollective servers from mcollective client using* mco ping *. But i have one query: => Since we use same username and pas

Re: [Puppet Users] Puppet with Passenger - 403 Forbidden

2013-03-12 Thread Dominic Cleal
On 12/03/13 09:09, Gavin Williams wrote: > Morning all > > Am in the process of testing a migration of Puppet 3 from webrick to > Puppet. > > Have found the foreman modules (https://github.com/theforeman) which > seems to take care of a lot of the leg-work... > However having got Puppet running w

[Puppet Users] Re: Restructure puppet modules

2013-03-12 Thread Andrea Crotti
Mm ok then I'll drop the idea and try to go with modules.. The other problem now is that I should somehow switch from an architecture which was provisioned but never correctly maintained with puppet to using puppet master and all these nice things, which is not going to be trivial.. On Monday, M

[Puppet Users] Puppet with Passenger - 403 Forbidden

2013-03-12 Thread Gavin Williams
Morning all Am in the process of testing a migration of Puppet 3 from webrick to Puppet. Have found the foreman modules (https://github.com/theforeman) which seems to take care of a lot of the leg-work... However having got Puppet running with Passenger in Apache, whenever trying to access t