[Puppet Users] Re: Check package version in order to proceed with installation (err: Could not update: package is already installed)

2012-03-08 Thread Mike
Why does puppet return an error when a package is already installed? I use ensure = installed to make sure that a package is installed, and then have a file that is dependent on that package. When the manifest is applied and the package is already installed, it reports an error and then

[Puppet Users] Puppet returns an error if a package is already installed

2012-03-08 Thread Mike
I'm very new to Puppet, and new to this group, so I apologize if this has already been covered. I did a quick search but didn't quickly find an answer. I have a manifest that among other things installs a couple of packages. These are not part of a repository, so I use puppet to send the rpm

[Puppet Users] Re: Puppet returns an error if a package is already installed

2012-03-09 Thread Mike
Thank you so much. That solved my problem. On Thursday, March 8, 2012 4:05:05 PM UTC-6, Mike wrote: I'm very new to Puppet, and new to this group, so I apologize if this has already been covered. I did a quick search but didn't quickly find an answer. I have a manifest that among other

[Puppet Users] Can't send certificate request

2012-03-13 Thread Mike
I can't get a new client working with my puppet master. When I try to run 'puppet agent --test' on the client, I get err: Could not request certificate: Connection refused - connect(2) Exiting; failed to retrieve certificate and waitforcert is disabled I can't telnet from the client to the

[Puppet Users] Re: Can't send certificate request

2012-03-13 Thread Mike
worked. On Tuesday, March 13, 2012 9:04:15 AM UTC-5, Mike wrote: I can't get a new client working with my puppet master. When I try to run 'puppet agent --test' on the client, I get err: Could not request certificate: Connection refused - connect(2) Exiting; failed to retrieve certificate

[Puppet Users] Operating system conflict?

2012-10-02 Thread Mike
Hi, I've have some problems with my puppet configuration, I'm managing several Ubuntu and OpenBSD hosts. I sometimes get on OpenBSD hosts (5.0 is OpenBSD release): info: Retrieving plugin err: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find template

[Puppet Users] Re: Operating system conflict?

2012-10-04 Thread Mike
and not only once an Ubuntu agent connects? Mike On Wednesday, October 3, 2012 4:43:16 PM UTC+2, jcbollinger wrote: On Tuesday, October 2, 2012 9:35:13 AM UTC-5, Mike wrote: Hi, I've have some problems with my puppet configuration, I'm managing several Ubuntu and OpenBSD hosts. I

[Puppet Users] Re: Operating system conflict?

2012-10-04 Thread Mike
, Mike wrote: Thanks for your answer. I think I've found my problem I had an include in the ubuntu base.pp modules/ubuntu-common/manifests/base.pp: include ubuntu-something class ubuntu-common::base { file { /etc/openntpd/ntpd.conf: ensure = file, owner = root, group

[Puppet Users] RHEL/Oracle Linux - user creation.

2012-12-28 Thread mike
I am trying to write a manifest that does not create the home directory for the user as it will be on a NAS volume. It seems that RHEL/Oracle requires your explicitly to use the -M options. Is there a way to do this with puppet? -- You received this message because you are subscribed to the

[Puppet Users] error with apply the class

2013-03-08 Thread mike
Hi, I am declaring class (for test) on my puppet master but when i want apply on my node i have the next error: [root@nodo1 ~]# puppet agent --test --noop Info: Retrieving plugin Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class baseConf for

[Puppet Users] Re: error with apply the class

2013-03-08 Thread mike
Thanks i solved with your suggestion El viernes, 8 de marzo de 2013 20:37:11 UTC-3, mike escribió: Hi, I am declaring class (for test) on my puppet master but when i want apply on my node i have the next error: [root@nodo1 ~]# puppet agent --test --noop Info: Retrieving plugin Error

[Puppet Users] dependency problem when apply class

2013-03-09 Thread mike
not find dependency User[mike] for File[/home/mike] [] My class is: [] class users($user,$uid) { group { Administracion : gid= 3000, } define adm_user ($user,$uid) { user { $user : ensure = present, home= /home/$user

[Puppet Users] Re: dependency problem when apply class

2013-03-10 Thread mike
for help. El sábado, 9 de marzo de 2013 14:57:31 UTC-3, mike escribió: Hi guys, I need help with the class, i have created my class (users) but when i apply from agent apers the next error: [] [root@nodo1 ~]# puppet agent --test --verbose --noop Info: Retrieving plugin Info

[Puppet Users] Store configuration problem (mysql)

2013-03-19 Thread mike
Hi all. I'm have question with sotred configuration for mysql on puppet master. I am reading the documentation in puppetlabs (http://projects.puppetlabs.com/projects/1/wiki/using_stored_configuration ) and when starts standalone puppet master i have the next message: []

[Puppet Users] Puppet Certificates

2010-12-27 Thread Mike
the proper routing. Thanks to anyone who has seen this error and knows the fix Mike -- 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

[Puppet Users] Generating Certs

2010-12-28 Thread Mike
this and knows how to fix it or has a workaround? Thanks! Mike -- 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+unsubscr

[Puppet Users] Certificate / Private Key Mismatch

2011-01-06 Thread Mike
in advance for anyone's help in solving this problem. Mike -- 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+unsubscr

[Puppet Users] Send Reports to Puppet Dashboard

2011-01-11 Thread Mike
#011from /etc/puppet/bin/external_node:20 Jan 11 11:19:16 fedorahost1 puppet-master[2572]: Could not find node 'fedorahost.ocfl.net'; cannot compile Jan 11 11:19:16 fedorahost1 puppet-master[2572]: Report http failed: No route to host - connect(2) Thanks, Mike -- You received this message because

[Puppet Users] New package provider

2011-04-14 Thread Mike
I'm looking to create a package provider. We have puppet installed in a non-standard location /puppet/puppet/* The only way I can test the provider is putting the new provider on the server and restarting puppet on the client. So a few questions. Is there a way to install it locally so I don't

[Puppet Users] Require a definition

2010-03-17 Thread Mike
I am looking for a way to create a dependency that ensures that a definition has been called/executed/instantiated with the require or before parameter. I realize there are several posts that confirm that this should be possible: define testdef { } file { testFile: name = /tmp/testFile,

[Puppet Users] Re: Require a definition

2010-03-17 Thread Mike
Thanks. That was what I was missing. So apparently you need to call a definition before you can require it. On Mar 17, 4:57 am, David Schmitt da...@dasz.at wrote: On 3/17/2010 12:59 AM, Mike wrote: I am looking for a way to create a dependency that ensures that a definition has been

[Puppet Users] Re: Require a definition

2010-03-17 Thread Mike
Makes sense now. Got confused with definitions for some reason. Thanks again. On Mar 17, 9:32 am, David Schmitt da...@dasz.at wrote: On 3/17/2010 3:56 PM, Mike wrote: Thanks. That was what I was missing.  So apparently you need to call a definition before you can require it. Almost

[Puppet Users] Re: Calling a function from a template

2010-03-26 Thread Mike
On Mar 26, 10:59 am, Michael DeHaan mich...@puppetlabs.com wrote: Does scope.function_echo([temp]) work instead? That did it! Thanks a lot! -- You received this message because you are subscribed to the Google Groups Puppet Users group. To post to this group, send email to

[Puppet Users] Could not create PID file error when .svn directory exists.

2010-04-15 Thread Mike
Getting some strange behavior when I try and start the puppetmaster. I keep my configs in a subversion repository so naturally there are .svn directories within the puppet config directory. Not sure why but one of my puppetmaster instances refuses to start until I remove one specific .svn

[Puppet Users] Re: Could not create PID file error when .svn directory exists.

2010-04-19 Thread Mike
Yes, when the .svn directory exists it throws the error: Could not run: Could not create PID file: /var/run/puppet/ puppetmasterd.pid On Apr 18, 3:34 pm, Tore tore.lo...@gmail.com wrote: Did you try to start puppetmaster prior you removed the .svn directory? On Apr 15, 11:18 pm, Mike

[Puppet Users] Re: vcsrepo type, svn, ensure = latest

2010-07-14 Thread Mike
Bort On Jul 14, 11:03 pm, bmort propertywholesa...@gmail.com wrote: Micheal, What directory and what file name did you put your test mainifest in? The I have puppet-vcsrepo (which is simply a git clone from the repo) in my $$modulepath. Then in my test env I have that test manifest below in

[Puppet Users] Re: Licensing and Copyright

2009-04-06 Thread Mike
I've been using Puppet for a month or two, and plan to keep on using it. I would imagine that as long as there is a not-stagnant community, bugs are being fixed regularly, it is included as part of the distributions I use, and nothing comes along that is a lot better, I'll keep using it. But

[Puppet Users] Confusion with puppetdb (storeconfig) and query database

2013-08-21 Thread mike
Hello, I have configured puppet and puppetdb (storeconfig) with postgresql and the service run and the collecting are good for example: I can make query with the next command and responds ok . [.] [root@master]# curl -X GET -H 'Accept: application/json'

[Puppet Users] Nagios server automating

2013-08-30 Thread mike
Hello, i 'm try automatizando my nagios monitoring i've running puppet with puppetDB and postgres and this running ok. The problem that present in this moment is the nagios structure in the server with generate puppet for example: When I connect my node agent (puppet agent --test) and my

[Puppet Users] Duplicate declaration for files.

2013-10-11 Thread mike
Hello, I'm configuring my linux server with puppet open and is ok. My question is the next; I've a declared in mi nodes.pp the next: [.] node 'basenode' { include 'baseos' include 'motd' import 'useradd.pp' } #All nodes for my domain node /.*\.example\.com/

[Puppet Users] Hiera error apply catalog

2014-04-28 Thread mike
Hi everyone, I learning Hiera for my Puppet configuration but I've the error when i execute the node connection. [] Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find data item apache_package in any Hiera data file and no default

[Puppet Users] Apply class fail from hiera

2014-05-15 Thread mike
Hi everyone, I'm setting in my Puppet the MySQL module with Hiera but when i run the node agent i give the error. -- [root@node1 ~]# puppet agent --test Info: Retrieving plugin Error: Could not retrieve catalog from remote server: wrong header line format Warning: Not using cache

[Puppet Users] Error starting PuppetDB

2014-05-23 Thread mike
Hi, I have Puppet working with PuppetDB (postgresql) but puppetdb after start service this say is dead and the service not running. 1. Start service (not fail) [...] [root@master ~]# service puppetdb start Starting puppetdb: [ OK ]

[Puppet Users] Problem with duplicate params

2014-05-27 Thread mike
Hello, I've create my user from Hiera but now wish configure secondary group (setting groups value) but i've problem when the secondary group not exists in the node and run puppet agent: [..] Error 400 on SERVER: Duplicate declaration: Group[test] is already declared in file

[Puppet Users] Configure saz/sudo module with hiera.

2014-06-02 Thread mike
Hi, I'm migrate my Puppet setting to Hiera, now I try configure saz/sudo module i've create my users under /etc/sudoers.d/10_user without problem with Hiera: sudo::configs: 'user': 'content' : %myGroup ALL=(ALL) NOPASSWD: ALL 'priority' : 10 But i've two nodes that use

[Puppet Users] Hiera command and check classes for the nodes

2014-07-09 Thread mike
Hello, I have Puppet and Hiera for in my configuration and i have the next question: when i define some node use the particular class declared inside fqdn/node.example.com.yaml and after check with hiera command the classes for this node and list only the class declared inside

[Puppet Users] PuppetDB service not running

2014-11-18 Thread mike
Hello Eveyone I've Puppet Server 3.7 running on Centos 6, i try install Puppetdb but when upload service inside the log i have the next error: [..] 2014-11-18 11:33:56,676 INFO [o.a.k.j.Journal] ignoring zero length, partially initialised journal data file: db-1.log number = 1

[Puppet Users] Re: Update Windows Tomcat using Puppet

2015-06-26 Thread Mike A.
If there's no way I can use Puppet to install/update Tomcat directly, should I use Chocolatey instead? How reliable is Chocolatey in a production server? Anyone have any experience? On Thursday, June 25, 2015 at 8:47:26 PM UTC+8, Mike A. wrote: Hi, I'm new in using Puppet but I was able

[Puppet Users] Update Windows Tomcat using Puppet

2015-06-25 Thread Mike A.
Hi, I'm new in using Puppet but I was able to install the server and several clients Almost all of our servers are running Windows 2008 with Tomcat 7 installed. I would like to know if it's possible to update the installed tomcat to version 8 using Puppet. If someone can point me to a

Re: [Puppet Users] failed to set mode 0777

2022-12-09 Thread Mike
Hi Dirk, The application was installed into the home drive of a standard ubuntu setup. I'll have to see what has gone wrong in this situation. Any suggestions of an installation guide I could follow that would allow me to setup puppet to operate with a cisco network? Thanks Mike On Friday

Re: [Puppet Users] Error: Could not run: cannot load such file -- net/ssh/telnet

2022-11-24 Thread Mike
org/gems/net-ssh-telnet > > This gem must be installed using the puppet ruby gem command: > > /opt/puppetlabs/puppet/bin/gem install net-ssh-telnet > > Hth, > Martin > > > On 15. Nov 2022, at 10:53, Mike wrote: > > Hi, > > I've come across the in subject err

[Puppet Users] failed to set mode 0777

2022-11-24 Thread Mike
Hi, Any ideas on this? Maybe I should attempt to re-install this again. Is there any documented installation process for puppet on ubuntu? I've tried various ways and always end up with different issues. Thanks Mike :/etc$ puppet device --verbose --target cisco.device.puppetlabs.net

[Puppet Users] Error: Could not run: cannot load such file -- net/ssh/telnet

2022-11-16 Thread Mike
Hi, I've come across the in subject error when trying to run puppet against a cisco device. I've exhausted my knowledge to troubleshoot this issue. Any pointers or place to check would be appreciated. Thanks $ puppet device --verbose --target cisco_device.puppetlabs.net Info: Retrieving

[Puppet Users] Could not run: cannot load such file -- net/ssh/telnet

2022-11-16 Thread Mike
Hi, Can anyone help with this error? $ puppet device --verbose --target cisco_device.puppetlabs.net Info: Retrieving pluginfacts Info: Retrieving plugin Info: Retrieving locales Error: Could not run: cannot load such file -- net/ssh/telnet Thanks Mike -- You received this message because you

Re: [Puppet Users] packages and Solaris

2011-12-28 Thread Mike Newton
We use virtual package declarations and realize the packages in the class they are needed. We push a standard adminfile to all the Solaris hosts. The packages are on an NFS share that is exported to all our servers: file { noask_pkgadd: path = /var/sadm/install/admin/noask_pkgadd, ensure =

[Puppet Users] Multiple runs needed to update configs?

2012-02-25 Thread Mike Knell
what's going on here? See below for a sample run of (multiple) attempts. Cheers, Mike # puppet agent --test err: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class unix for hostname.uffish.net at /etc/puppet/manifests/templates.pp:2 on node hostname.uffish.net

Re: [Puppet Users] Re: Multiple runs needed to update configs?

2012-02-26 Thread Mike Knell
On Mon, Feb 27, 2012 at 1:51 AM, paulS pstive...@gmail.com wrote: Hi Markus, I'm pretty new, too, I struggled with the same error just today. Here's how I resolved it. The error message 'Could not find class' sometimes occurs when puppet doesn't like the contents of the class. The

[Puppet Users] Re: Avoiding duplicate definitions

2012-03-19 Thread Mike Frisch
On Tuesday, March 6, 2012 12:53:57 PM UTC-5, jcbollinger wrote: employ. I think it's better, though, to just let the compilation failures happen -- use them to detect where you need to patch up conflicts between modules. I agree with this, however I have a scenario where the end-user

Re: [Puppet Users] puppet dashboard and mysql server is not localhost

2012-04-16 Thread Mike Becker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 That is possible you just need to edit the hosts parameter. The Dashboard is a rails application don't forget to migrate your database afterwards, Regards, Mike Am 16.04.2012 12:19, schrieb Fabien COMBERNOUS: Hi, I'm installing puppet dashboard

[Puppet Users] Re: Puppet Node Create?

2012-05-16 Thread Mike Jeski
It appears that cloud_provisioner is pe specific. Not certain what it would take to make it work with community. digging through it now, will let you know what I find. On May 16, 2:02 pm, de dustye...@gmail.com wrote: I have cloud_provisioner installed. It's not available. I think you can only

[Puppet Users] Re: Puppet Node Create?

2012-05-16 Thread Mike Jeski
provisioner to spin up nodes in EC2. The cloud provisioner face that deals with VMware IS PE-specific   --http://docs.puppetlabs.com/pe/2.5/cloudprovisioner_vmware.html On Wed, May 16, 2012 at 2:46 PM, Mike Jeski jeski...@gmail.com wrote: It appears that cloud_provisioner is pe specific

[Puppet Users] Puppet Configuration - Running --configprint generates long list of values

2012-06-20 Thread Mike Reed
with at the moment. My thanks to everybody's help in advance. Cheers, Mike -- 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/-/H2P51DT0WfMJ. To post to this group

Re: [Puppet Users] Puppet Configuration - Running --configprint generates long list of values

2012-06-20 Thread Mike Reed
Thank you for the reply Craig. That makes sense and points me in the right direction. Thanks again, Mike On Wednesday, June 20, 2012 1:06:09 PM UTC-7, Craig White wrote: On Jun 20, 2012, at 12:38 PM, Mike Reed wrote: Hello all, I fairly new to puppet and google groups so I'll

[Puppet Users] Re: Puppet Configuration - Running --configprint generates long list of values

2012-06-20 Thread Mike Reed
Hey Nick, Thank you for the reply. I'll take a look at the defaults.rb file and see what I can make of it. The explanation regarding the core group settings is most helpful and makes perfect sense. Again, thanks for the informative links and the info. Cheers, Mike On Wednesday, June 20

[Puppet Users] Distribution upgrade and subsequent reboot of machine

2012-06-26 Thread Mike Reed
a bit of a hack and I was wondering if anybody had an opinion as to if this can be done in a cleaner fashion. I'm still very new to Puppet so please excuse my novice example. Thanks in advance for the help and support. Cheers, Mike -- You received this message because you are subscribed

[Puppet Users] Re: Distribution upgrade and subsequent reboot of machine

2012-06-26 Thread Mike Reed
As an update, after running this a few times after this initial post, I'm seeing the machine reboot after new classes have been added which is not desired. I might have to rethink the reboot approach. Thanks again, Mike On Tuesday, June 26, 2012 6:12:05 PM UTC-7, Mike Reed wrote: Hello all

[Puppet Users] Re: Distribution upgrade and subsequent reboot of machine

2012-06-27 Thread Mike Reed
Hey John, Thanks for the reply. I'll look up the 'onlyif' and 'unless' usage and see which might best suit my needs. Thank you for pointing me in the right direction. Cheers, Mike On Wednesday, June 27, 2012 8:02:16 AM UTC-7, jcbollinger wrote: On Tuesday, June 26, 2012 8:12:05 PM UTC

Re: [Puppet Users] Distribution upgrade and subsequent reboot of machine

2012-06-27 Thread Mike Reed
for the suggestion and help. Cheers, Mike On Tuesday, June 26, 2012 6:37:52 PM UTC-7, Pete wrote: Hi Mike, Just as a side not I would be rather hesitant to set this up with puppet. This may be a job for some other tool like mcollective but I have not ventured into the land yet

[Puppet Users] Nvidia driver install - condition for install

2012-06-29 Thread Mike Reed
manifest? Thanks in advance for everybody's assistance and the help is very much appreciated. Cheers, Mike -- 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

[Puppet Users] Re: Nvidia driver install - condition for install

2012-07-05 Thread Mike Reed
suggestion about a custom fact but I'm not quite there in my knowledge yet so I suspect I'll use some mix of a relation and a simple if statement. Cheers, Mike On Friday, June 29, 2012 11:29:57 AM UTC-7, Mike Reed wrote: Hello all, I'd like to use puppet to install an Nvidia driver on a local

[Puppet Users] Double quotes within an exec statement

2012-07-05 Thread Mike Reed
for the help in advance. Cheers, Mike -- 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/-/nDswUwx_4tsJ. To post to this group, send email to puppet-users

Re: [Puppet Users] Double quotes within an exec statement

2012-07-05 Thread Mike Zupan
escape your inner quotes \ \ exec { /opt/pbis/bin/config UserDomainPrefix \\ : } On Thu, Jul 5, 2012 at 1:23 PM, Mike Reed mjohn.r...@gmail.com wrote: Hello all, I've been trying to run this exec statement (which to my peril was initially thought to be something simple): exec { /opt/pbis

[Puppet Users] Re: Double quotes within an exec statement

2012-07-05 Thread Mike Reed
them up. Thanks again for the help. Cheers, Mike On Thursday, July 5, 2012 1:23:47 PM UTC-7, Mike Reed wrote: Hello all, I've been trying to run this exec statement (which to my peril was initially thought to be something simple): exec { /opt/pbis/bin/config UserDomainPrefix : } After

[Puppet Users] Multiple execs within a class

2012-07-05 Thread Mike Reed
that this can be done in a more elegant fashion especially since the bjam command is dependent upon the bootstrap.sh script running but I was hoping to at least get this working. Thanks in advance for the thoughts. Cheers, Mike -- You received this message because you are subscribed to the Google

[Puppet Users] Re: Multiple execs within a class

2012-07-06 Thread Mike Reed
/puppet_pkgs then the files won't be deleted upon reboot and I can use them as a temporary placeholder until I figure out a more elegant solution to this hack that I've put together. I'm sorry for writing the novel above and I very much appreciate your help and support on this one. Cheers, Mike

[Puppet Users] Running make via puppet manifest

2012-08-01 Thread Mike Reed
suggestions as to why this one won't properly fire? As always, the help and support are much appreciated. Cheers, Mike -- 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

[Puppet Users] Re: Running make via puppet manifest

2012-08-02 Thread Mike Reed
Thank you all for the responses. I think the solution of scripting the install and calling the script via puppet is an interesting thought. Thanks as well for the suggested reading. Cheers, Mike On Wednesday, August 1, 2012 12:56:11 PM UTC-7, Mike Reed wrote: Hello all, I've been

[Puppet Users] Extending Puppet Woes

2012-08-10 Thread Mike Carr
I am looking to extend one of the puppet modules -mysql. I found that they are extending Puppet with types and providers. First off I am having a difficult time find any documentationo on this and I do not know Ruby that well. The problem that I am having is this, I have the following code:

Re: [Puppet Users] Extending Puppet Woes

2012-08-11 Thread Mike Carr
Awesome, thanks! Is this a feature of Ruby or Puppet? -- 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/-/H5Mk5syctXEJ. To post to this group, send email to

[Puppet Users] Automate puppet agent runs

2012-08-20 Thread Mike Carr
We are building a system that has a front end for a user to request a host, the use can select what they want on the host. Our application will build/apply the correct profiles, we would then like to trigger the agent to check-in. Our app is current written in Groovy so a REST API would be

[Puppet Users] Automate Agent Runs

2012-08-20 Thread Mike Carr
We are building a system that has a front end for a user to request a host, the use can select what they want on the host. Our application will build/apply the correct profiles, we would then like to trigger the agent to check-in. Our app is current written in Groovy so a REST API would be

Re: [Puppet Users] Automate puppet agent runs

2012-08-20 Thread Mike Carr
, 2012 at 11:48:44AM -0700, Mike Carr wrote: We are building a system that has a front end for a user to request a host, the use can select what they want on the host. Our application will build/apply the correct profiles, we would then like to trigger the agent to check

[Puppet Users] Re: Could not retrieve catalog from remote server: end of file reached

2012-09-05 Thread Mike Frisch
On Tuesday, July 24, 2012 12:47:09 PM UTC-4, Matt Wise wrote: I've got a few puppet servers running behind Nginx, load balanced with an ELB. I occasionally see this error in bursts.. Tue Jul 24 09:41:23 + 2012 Puppet (err): Could not retrieve catalog from remote server: end of file

[Puppet Users] puppet client can't get certificate

2012-10-04 Thread mike sonero
at the beginning... If anybody has ideas on things I might try I'd really appreciate it! Sorry if I didn't include the right info. /var/log/syslog seemed pretty empty. Thanks, - mike -- You received this message because you are subscribed to the Google Groups Puppet Users group. To view

Re: [Puppet Users] Storeconfig and mcollective using activemq

2012-10-20 Thread Mike Skint
One reason I wouldn't do this is that the puppet console *only* uses mysql and as I understand it puppetdb doesn't support mysql, I'm not chuffed by the idea of running both.. On Thursday, May 31, 2012 5:03:41 AM UTC-7, Ken Barber wrote: Why don't you try using PuppetDB for stored configs

[Puppet Users] migrating puppetmasters the console database (puppet enterprise)

2012-11-16 Thread Mike Skint
is this: Is it feasible to dump the console db on the old master and restore it on the new master? Yes this is puppet enterprise. thanks for taking the time to read this.. -mike -- You received this message because you are subscribed to the Google Groups Puppet Users group. To view this discussion

[Puppet Users] Re: migrating puppetmasters the console database (puppet enterprise)

2012-11-20 Thread Mike Skint
for anyone that is interested a much simpler method to accomplish this is to use rake tasks to modify the classes and node groups. It's easily scripted.. On Friday, November 16, 2012 2:13:37 PM UTC-8, Mike Skint wrote: Hi group, I'm in the process of migrating a puppetmaster to a new host

Re: [Puppet Users] Re: RHEL/Oracle Linux - user creation.

2012-12-30 Thread Mike Rochford
?(Facter.value(:operatingsystem)) cmd -M end cmd end /snippet facter output ol6-3:~ # facter operatingsystem OracleLinux ol6-3:~ # /facter output -Mike On Fri, Dec 28, 2012 at 9:58 PM, John Guthrie jguth...@book.com wrote: Also make certain that your shadow-utils package is up

[Puppet Users] Re: stuck installing puppet in RHEL 5

2013-01-31 Thread Mike Beauchamp
Would love to know what the fix was, having the same issue when installing on CentOS 6.3 On Thursday, January 31, 2013 2:15:07 PM UTC-7, Ellison Marks wrote: Might post what the fix was, in case others find this thread. On Thursday, January 31, 2013 11:24:39 AM UTC-8, brutuz wrote: Please

[Puppet Users] Re: All Hosts Shown as Unresponsive. Worker Restart Fails. Clients Seem Happy?

2013-02-07 Thread Mike Beauchamp
I was able to fix this by going into the /etc/init.d/pe-puppet-dashboard-workers and editing the CPU line in the start section. Previously it had {CPU:-2}, and I changed that to 4. Instantly cleared the queue, and nodes showed up. On Tuesday, December 11, 2012 6:55:56 PM UTC-7, Dave

Re: [Puppet Users] Re: PuppetDB queue problem

2013-03-04 Thread Mike Tedesco
Is puppetdb and postgres on the same server? How many node does your environment have? I had a similar issue and it was linked to I/O. Can you look at that? Mike { Thanks = always } On Mar 4, 2013, at 4:55 PM, Ken Barber k...@puppetlabs.com wrote: Any progress today? On Fri, Mar 1

Re: [Puppet Users] Re: PuppetDB queue problem

2013-03-05 Thread Mike Tedesco
What are the I/O stats? Can I just peak at them? Mike { Thanks = always } On Mar 5, 2013, at 3:00 AM, ak0ska akos.he...@gmail.com wrote: Hey Mike, Thanks for the suggestions, but we already checked the IO rates, and they seemed fine. And yes, PuppetDB and Postgres are on the same

[Puppet Users] Organization of puppet classes

2013-03-11 Thread Mike Reed
achieve this? Thanks in advance for the help on this one. Cheers, Mike -- 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...@googlegroups.com

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

[Puppet Users] node based regex entries

2013-03-12 Thread Mike Reed
to figure this one. As always, thanks in advance for the help and support. Cheers, Mike -- 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] node based regex entries

2013-03-13 Thread Mike Reed
Hey Iain, Thanks for the reply and the suggestion. That one got me close but didn't give me exactly what I needed. Consequently, this did: node /^(sbx-.*-\d\d$)/ Thanks again for the suggestion and the help. Cheers, Mike On Tuesday, March 12, 2013 6:54:50 PM UTC-7, nseagoon wrote

[Puppet Users] Installing puppet modules

2013-03-15 Thread Mike Power
I want to setup a node using a three step process 1) download node requirements (git) 2) download modules to fit requirements (puppet) 3) Bring up the node in the required state (puppet) The second step is the one I am having trouble with. I want a file (master.pp) to list out all the modules

[Puppet Users] Installing module of the correct version

2013-03-15 Thread Mike Power
that I could produce it in house. Have people solved this problem? What has been their approach? Mike Power -- 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

[Puppet Users] replacing mkdir -p

2013-04-04 Thread Mike Power
Puppet right now requires every element of a path to have an individual file definition. This makes it had to take an arbitrary path as a parameter. You are forced to require your client to make the entire path structure for you or instead you use an exec resource and call mkdir -p. Using

[Puppet Users] Re: replacing mkdir -p

2013-04-04 Thread Mike Power
Actually I found if I created a resource between path and file called element, I could give it a unique name. Then inside the body I could check to see if the File is declared, if not I could declare it. On Thursday, April 4, 2013 9:23:54 AM UTC-7, Mike Power wrote: Puppet right now

[Puppet Users] Re: replacing mkdir -p

2013-04-09 Thread Mike Power
I'll see if I can open source the component I wrote and upload it to puppet forge. In this way the open source community can continue the debate about what is the best way to do this, while at the same time those who want can use some solution other than mkdir -p -- You received this message

[Puppet Users] puppet inverts dependencies?

2013-04-09 Thread Mike Power
Have anyone of you every seen puppet invert a dependency? Say I have a class like so: class jenkins { user {jenkins: ensure = present, } } That should form a dependency like so User[jenkins] = Class[jenkins]. That dependency means that the user jenkins will be

[Puppet Users] defined function notparse order dependant

2013-04-23 Thread Mike Power
I have been backed into a corner, by they way puppet works, but some third party module. Basically I have two resources defined: a {$somevar:} b::b {$somrvar:} both have code that looks something like this: if (!defined(File[$name])) { file { $name: ... } According to the

[Puppet Users] Re: defined function notparse order dependant

2013-04-23 Thread Mike Power
The difference between 'a' and 'b::b' was that 'a' didn't have a file declaration, it had a resource declaration that had a file declaration. So if I created a new resource that wrapped 'b::b' then I got a straight forward parse-order dependency. I tend to use defined because it allows you

[Puppet Users] Re: defined function notparse order dependant

2013-04-24 Thread Mike Power
cannot be understood is not a virtue. It is a very bad thing. On Wednesday, April 24, 2013 6:19:13 AM UTC-7, jcbollinger wrote: On Tuesday, April 23, 2013 4:52:11 PM UTC-5, Mike Power wrote: I have been backed into a corner, by they way puppet works, but some third party module

[Puppet Users] Puppet 3.2.0-0.1rc2.el6 SSL problem

2013-05-15 Thread Mike S
no method find, save allow * Thanks, Mike -- 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...@googlegroups.com. To post

[Puppet Users] mcollective setup question

2013-05-29 Thread Mike Bowden
I am currently trying to get mcollective 2.2.4 up and running on RHEL 6 activeqm appears to be running and bound to the correct port, I see the server and client connections to the activemq box. However when I run mco ping all seems to go well except I get No responses recieved and above that I

[Puppet Users] puppet_dashboard.rb keeps getting deleted by puppet agent

2013-06-03 Thread Mike Schmidt
I am currently using puppet in testing, on a centos 6.4 machine running puppet-master, puppet-agent, dashboard, and foreman. The manifest for the puppet matser machine in empty, like so: node 'puppet' { } However, when the pupper agent runs, it always deleted the dashboard report module,

[Puppet Users] puppet agent removes puppet_dashboard.rb

2013-06-03 Thread Mike Schmidt
I have a test puppet installation on CentOS 6.4, version 3.2.1, all uptodate with the puppetlabs repos. It is running the puppet master, a puppet agent, dashboard, with foreman installed but not yet configured. Part of the install for dashboard is copying the puppet_dashboard.rb file to the

[Puppet Users] Re: puppet agent removes puppet_dashboard.rb

2013-06-03 Thread Mike Schmidt
Sorry, this is a repost of an earlier topic; I couldn't find the earlier post so I thought it had not made it. I'm new to Google groups. -- You received this message because you are subscribed to the Google Groups Puppet Users group. To unsubscribe from this group and stop receiving emails

  1   2   3   4   >