[Puppet Users] Re: Check package version in order to proceed with installation (err: Could not update: 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 doesn'

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

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

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

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

2012-03-13 Thread Mike
--server your.server --environment your_env-- > waitforcert 60 --no-daemonize > > > > Bernd > > > > ** > *Betreff:* AW: [Puppet Users] Can't send certificate request > > > > > > > > > > *Von:* puppet-users@googlegroups.com &g

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

2012-03-13 Thread Mike
everything 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 -

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

[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 wrote: > Did you try to start puppetmaster prior you removed the .svn > directory? > > On Apr 15, 11:18 pm,

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

2010-07-14 Thread Mike
Bort On Jul 14, 11:03 pm, bmort 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 site.pp. This test env is

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

[Puppet Users] Generating Certs

2010-12-28 Thread Mike
e has seen 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

[Puppet Users] Certificate / Private Key Mismatch

2011-01-06 Thread Mike
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

[Puppet Users] Send Reports to Puppet Dashboard

2011-01-11 Thread Mike
m /usr/lib/ruby/1.8/net/http.rb:440:in `start'#012#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 -

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

[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/tes

[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 wrote: > On 3/17/2010 12:59 AM, Mike wrote: > > > > > > > I am looking for a way to create a dependency that ensu

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

[Puppet Users] Calling a function from a template

2010-03-26 Thread Mike
Hi, I'm attempting to call a custom function directly from a template. I've gotten as far as being able to call the function, but it isn't returning the correct value. I've created a simple function that just returns the value passed to it: echo.rb: module Puppet::Parser::Functions newfunction

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

2010-03-26 Thread Mike
On Mar 26, 10:59 am, Michael DeHaan 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-us...@googlegroups.com. To

[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 'ubuntu-co

[Puppet Users] Re: Operating system conflict?

2012-10-04 Thread Mike
option) so that in my example OpenBSD would fail directly 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&#

[Puppet Users] Re: Operating system conflict?

2012-10-04 Thread Mike
, 2012 4:00:53 AM UTC-5, 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 >> >> cl

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

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

[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 nodo1.

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

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

[Puppet Users] Re: dependency problem when apply class

2013-03-10 Thread mike
] node 'nodo1.example.com' { # include users adm_user { 'mcoa': name => 'mcoa', uid => '9000',} users::add_user { 'mcoa': user => "mcoa", uid => '9000'} } [] Thanks for hel

[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: [] [root@pu

[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' http://127.0.0.1:

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

[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/ i

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

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

[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 /etc/

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

[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 "node.example

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

[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] Error: Could not run: cannot load such file -- net/ssh/telnet

2022-11-24 Thread Mike
gems.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 s

[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.puppetlab

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 F

[Puppet Users] Multiple runs needed to update configs?

2012-02-25 Thread Mike Knell
ints. Anyone got any idea 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

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 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 difference for me is

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

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'

[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 wrote: > I have cloud_provisioner installed. It's not available. I think you can > only create nodes from

[Puppet Users] Re: Puppet Node Create?

2012-05-16 Thread Mike Jeski
ovisioner 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 wrote: > > It

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

2012-06-20 Thread Mike Reed
#x27;m not sure that's something I should be concerned 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 h

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 n

[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

[Puppet Users] Distribution upgrade and subsequent reboot of machine

2012-06-26 Thread Mike Reed
scribe => Exec["purge_linux-image-2.6.32-38-server"] , refreshonly => true , } } This seems to be doing the job but I feel it's 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

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

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

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

2012-06-27 Thread Mike Reed
a run and see how it goes. I wanted to thank you 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 l

[Puppet Users] Nvidia driver install - condition for install

2012-06-29 Thread Mike Reed
hell script that does the checking? Maybe just adding the shell script into the "nvidia_driver" 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] Re: Nvidia driver install - condition for install

2012-07-05 Thread Mike Reed
I like Nan's 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&#

[Puppet Users] Double quotes within an exec statement

2012-07-05 Thread Mike Reed
es anybody have any suggestions as to how one might run an exec with double quotes? As always, thanks 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

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 wrote: > Hello all, > > I've been trying to run this exec statement (which to my peril was initially > thought to

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

2012-07-05 Thread Mike Reed
ach one and fix 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

[Puppet Users] help with new type

2011-07-13 Thread Mike Zupan
nvalid parameter user at /etc/puppet/manifests/modules/brsoft/manifests/history.pp:11 on node history-v01-00a.domain.com If i remove the user part from the manifest, it works just fine.. i'm scratching my head a bit thanks mike -- You received this message because you are subscribed to the

Re: [Puppet Users] Circular RPM dependencies...

2011-08-22 Thread Mike Lococo
the yum provider very close to useless. I'm watching bug #2198 closely to see if it ever lands, but it seems to be very low on the priority list given that there's been a patch sitting unmerged for almost two years. Folks who work around this issue do so with execs, but I think more

Re: [Puppet Users] Circular RPM dependencies...

2011-08-25 Thread Mike Lococo
e to understand much about rpm dependencies. The behaviors involved are pretty straightforward, but you can't make big assumptions about what dependency cycles mean based on your experience in other systems. Cheers, Mike Lococo -- You received this message because you are subscribed

Re: [Puppet Users] Circular RPM dependencies...

2011-08-25 Thread Mike Lococo
o require admins to specify package-deps manually. Cheers, Mike Lococo On 08/25/2011 06:29 PM, R P Herrold wrote: On Thu, 25 Aug 2011, Mike Lococo wrote: 2) You must understand how the yum and rpm os commands work, and specifically how they each handle dependencies and circular deps (yum works to

Re: [Puppet Users] Escaping Quotes

2011-11-21 Thread Mike Pountney
I'd deploy a wee script that does what you are trying to handle in the command string, and just call that instead. On 21 Nov 2011, at 06:30, Douglas Garstang wrote: > Grrr. I have the exec{} below in my puppet module. How do I escape the > \ characters? I've tried every possible combination I c

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", ensur

Re: [Puppet Users] Resolving variables when using templates

2010-04-26 Thread Mike Pountney
On 26 Apr 2010, at 12:24, Bernd Adamowicz wrote: > Hi all, > > given these two classes inside the file > '/etc/puppet/modules/templates_eval/manifests/init.pp': > > 53 class templates_eval::providevars { > 54 > 55 > $hibernate_connection_dialect="org.hibernate.dialect.Oracle1

Re: [Puppet Users] Is this an intermediate / advanced puppet users list??

2010-04-26 Thread Mike Pountney
willing to help more interactively. #puppet on irc.freenode.net Cheers, Mike On 26 Apr 2010, at 15:13, Gabriel - IP Guys wrote: > Dear Guys (and girls and autobots), > > I look at the issues that some people have on this list, and I am genuinely > embarrassed to post my issues! I’

[Puppet Users] File Hierarchy

2010-05-11 Thread Mike Seda
e hierarchy has been renamed "lib" Is this correct? 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

Re: [Puppet Users] ANNOUNCE: Puppet 2.6.0 - Release Candidate 1 available!

2010-07-10 Thread Mike Pountney
+1 to that! I'm particularly interested in using hashes and stages. Any knowledge of known gotchas going from 0.25 manifests would be appreciated, if available :) On 10 Jul 2010, at 08:58, Ryan Dooley wrote: > Awesome :) > > On 7/9/2010 11:58 PM, James Turnbull wrote: >> Welcome back again t

Re: [Puppet Users] Language Feature by Release table

2010-08-24 Thread Mike Pountney
On 24 Aug 2010, at 07:36, James Turnbull wrote: > Hi all > > We've added a Language Feature by Release table to the Language Tutorial. > > http://docs.puppetlabs.com/guides/language_tutorial.html > > Please feel free to suggest additions to this or other suggestions. > Fantastic idea, than

[Puppet Users] How to bootstrap a new puppet instance?

2010-08-26 Thread Mike Peck
docs that describe what a significantly sized existing organization might go through in order to adopt puppet? Of course I would expect this to ignore all the policy issues of adoption, I'm looking for ideas on how to get started. Thanks! Mike -- You received this message because you are s

Re: [Puppet Users] Is a puppet server essential?

2010-08-27 Thread Mike Devlin
run. - Mike On Thu, Aug 26, 2010 at 10:04 PM, bonobo wrote: > It appears that running a puppet server is essential. In his book > "Pulling Strings with Puppet", James Turnbull says: > > "... the node will request whatever configuration is specified for > that

Re: [Puppet Users] Re: New Employee Announcement -- Daniel Pittman joins Puppet Labs.

2010-12-24 Thread Mike Pountney
On 24 Dec 2010, at 00:15, Nigel Kersten wrote: > > > Seriously though, I'm thrilled Daniel is joining us. Awesome mix of > dev and ops and a great community participant to boot. Being > Australian is just a bonus on top of those :) > Yup, having had the pleasure of working with Daniel several

Re: [Puppet Users] Re: Multiple packages installation in one yum call

2011-01-18 Thread Mike Lococo
rward, improves performance of puppet-runs, and has no downside that has been discussed in its bug. Cheers, Mike Lococo -- 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@googlegroups.com.

Re: [Puppet Users] Re: Multiple packages installation in one yum call

2011-01-19 Thread Mike Lococo
On 01/18/2011 03:06 PM, Avi Miller wrote: > Mike Lococo wrote: >> 2) Use the yum-driven options *AND* run your own satellite server so you >> can ping it as often as you like. > > You don't need a Satellite Server for this, just a plain Yum server will > do, wh

Re: [Puppet Users] Config Deployment: baseline manifest to all hosts, different sudoers,autofs..etc(manifest) to hosts, by hostname?

2011-02-25 Thread Mike Becker
hem either to regex , specific node names or the default one Regards, Mike Am 24.02.2011 15:16, schrieb Jed: > Hi all, > > I think this has been asked in one form or another, but my problem so > far is i'm not sure of the terminology or nomenclature to use in my > searc

Re: [Puppet Users] Re: best way of handling source installs

2011-03-02 Thread Mike Lococo
can just keep building from source. The last option is likely to be the least time-consuming IMO. If you want details on my packaging setup, feel free to reach out to me offline. Cheers, Mike Lococo -- You received this message because you are subscribed to the Google Groups "Puppet Users

[Puppet Users] err: Could not retrieve catalog from remote server: certificate verify failed

2011-03-24 Thread Mike Franon
So set up new node, ran on the client puppetd --server puppetmaster --waitforcert 60 --test on the puppetmaster itself I ran puppetca --list saw the hostname and then ran: puppetca --sign hostname.domain.com and on the puppet node itself I went back and ran puppetd -tv and get the following

Re: [Puppet Users] err: Could not retrieve catalog from remote server: certificate verify failed

2011-03-24 Thread Mike Franon
Thanks, Do you mean on the puppetmaster? On Thu, Mar 24, 2011 at 11:22 AM, Sergey Zhuga wrote: > I was fighting with this issue today. Try to use FQDN in 'server' directive. > > On 24.03.2011 16:50, Mike Franon wrote: >> >> So set up new node, ran on th

[Puppet Users] Re: Ordered Installation

2009-06-24 Thread Mike Renfro
n building the packages? That way, in case your repository or packages ever get used by others, they won't have to use your manifests (or a set of instructions telling them to install packages either together or in a particular order). -- Mike Renfro / R&D Engineer, Center for Manufacturing

[Puppet Users] Re: Ordered Installation

2009-06-24 Thread Mike Renfro
nd you shouldn't have any ordering issues at all. If these are packages you've created locally, then you'd set needed dependencies in the debian/control file. http://www.debian.org/doc/debian-policy/ch-relationships.html has more details. -- Mike Renfro / R&D Engineer, Center

[Puppet Users] Re: Ordered Installation

2009-06-25 Thread Mike Renfro
You've switched from asking about the native puppet package type on Debian to how to get puppet to how to get download and build Gems from source. What you propose in the last message is probably about as good a solution as I'd be able to come up with. -- Mike Renfro / R&D En

[Puppet Users] Ensure overriden service after exec has run

2009-06-25 Thread Mike Lancaster
Hi, How do I force my Service declaration (with is defined elsewhere and inherited) is run after an exec has run? The code; class autofs_nis::services inherits services::base { Service['ypbind'] { ensure => running, enable=> true, } . } class autofs_nis::exec inhe

[Puppet Users] Re: Ensure overriden service after exec has run

2009-06-26 Thread Mike Lancaster
My original email didn't explain my problem very well. I'm just looking for a bit of advice on how to implement the following; How do I force my Service declaration (which is defined elsewhere and inherited) to run after an exec has run? ypbind is already defined as a service elsewhere so I inhe

[Puppet Users] Re: Workstations and Certs

2009-06-30 Thread Mike Renfro
sing the same ssh host key for all your systems. -- Mike Renfro / R&D Engineer, Center for Manufacturing Research, 931 372-3601 / Tennessee Technological University --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[Puppet Users] Re: ssh_authorized_key completely ignoring "require"

2009-08-04 Thread Mike Harding
I am just starting with puppet, and the intended use was to manage ssh keys. Is there an intended release to fix this, or some other way to get it working? On Jul 17, 1:14 pm, seph wrote: > As someone whose actively setting up and deploying puppet on new > machines, this bug is a huge annoyance

[Puppet Users] Managing about 30 users?

2009-08-04 Thread Mike Harding
I have about 30 dev. and operation users on my machines, is there a recipe anywhere for doing this? The best practices doc on the wiki is incomplete and confusing. Also, any workaround for the ssh_authorized_key bug in 24.8? All I really want to do is create users, home directories and put ssh

[Puppet Users] Even the "Simplest Puppet Install Recipe" apparently isn't simple enough

2009-09-04 Thread Mike G.
on this? I'd really love to try this product out, but these issues are beginning to drive me batty. Thanks Mike --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this grou

Re: [Puppet Users] nested variables

2009-12-24 Thread Mike Pountney
Have a look at the generate() and inline_template() functions, one of which should provide you with a workaround to your problem. There may be a more elegant solution though. On 24 Dec 2009, at 09:33, sHaggY_caT wrote: > Hi all! > > I have quation: how i may use nested variables/facts? For e

Re: [Puppet Users] London Puppet Meet - Wednesday 31 March

2010-03-29 Thread Mike Pountney
I'll be there from about 7pm I imagine, unless I can get out of work early. On 29 Mar 2010, at 12:33, Paul Nasrat wrote: > Meet up following training, open to all, we'll meet at The Green Man > pub again, I get off about 18h so probably there about 18:30 but feel > free to get there earlier if th

Re: [Puppet Users] London Puppet Meet - Wednesday 31 March

2010-03-31 Thread Mike Pountney
Me either unfortunately. See you all at DevOps at the Guardian instead, or PuppetCamp if not! On 31 Mar 2010, at 17:17, Julian Simpson wrote: Guys, I can't make it to the pub. Have a great time! Julian. On 30 March 2010 10:17, Paul Nasrat wrote: On 30 March 2010 08:04, Gary Law wrote:

Re: [Puppet Users] List of lists

2010-04-02 Thread Mike Pountney
As far as I know this should work. There was a regression in 0.24.6 that broke it though. Which version are you running? On 2 Apr 2010, at 14:55, Serge Dewailly wrote: Hi all, Is it possible to manage List of list within Puppet ? I'd like to use something like this : interfaces = [ [ "

Re: [Puppet Users] List of lists

2010-04-02 Thread Mike Pountney
? Serge. Le 02/04/10 16:25, Mike Pountney a écrit : As far as I know this should work. There was a regression in 0.24.6 that broke it though. Which version are you running? On 2 Apr 2010, at 14:55, Serge Dewailly wrote: Hi all, Is it possible to manage List of list within Puppet ? I

[Puppet Users] Multiple execs within a class

2012-07-05 Thread Mike Reed
p or bjam commands should run as the /usr/local/include/boost directories exist on the machine and I'm expecting the "ls" to return a 0; which it does on the machine because those directories exist. I'm obviously missing something here and I'm looking for some directio

[Puppet Users] Re: Multiple execs within a class

2012-07-06 Thread Mike Reed
;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 On Thurs

[Puppet Users] Running "make" via puppet manifest

2012-08-01 Thread Mike Reed
-lei_chelsio_driver/manifests/init.pp:20 I added the "path" parameter for good measure and still no dice. Any 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 bec

[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, > &g

  1   2   3   4   >