[Puppet Users] New to puppet trying to copy files based on extension to certain nodes

2019-04-12 Thread James Adams
Is there a wildcard type feature I can use to copy all files from a folder with specific extension to certain hosts? Here is what I have I have a large number of files with the hostname at end of file. files/ssl.conf_xq-poc02 files/svn-deny.conf_xq-poc02 files/userdir.conf_xq-poc02 files/welcome.

Re: [Puppet Users] New to Puppet :wanted more information of VM provisioning in puppet

2016-11-22 Thread Rob Nelson
Whether you use Puppet Enterprise or Razor, Puppet can still be used in your provisioning pipeline. That's how it fits into Foreman, for instance. If you're a VMware shop, you can tie it into vRO/vRA workflows. You can fit into an Openstack workflow (but I'm not familiar with that to name the right

Re: [Puppet Users] New to Puppet :wanted more information of VM provisioning in puppet

2016-11-22 Thread Martin Alfke
One more tool: there is razor (from Puppet and it is open source) https://forge.puppet.com/puppetlabs/razor/readme https://puppet.com/product/capabilities/automated-provisioning https://github.com/puppetlabs/razor-server > On 22 Nov 2016, at 12:46, Akai wrote: > > Its possible but not by Puppet

Re: [Puppet Users] New to Puppet :wanted more information of VM provisioning in puppet

2016-11-22 Thread Andrew Langhorn
Puppet can be used to provision infrastructure, but to answer this in any more depth, we'd need to know what infrastructure you want to provision. Andrew -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop re

[Puppet Users] New to Puppet :wanted more information of VM provisioning in puppet

2016-11-22 Thread Ritesh Yeole
Hi, I am new to puppet and have following requirement for my infrastructure : 1) Is VM provisioning possible from puppet ? And if possible then which version will it support. ? Can any one help me regarding this ? Thanks in advance. Regards, Ritesh -- You received this message because you

Re: [Puppet Users] new to puppet.

2015-03-21 Thread Martin Alfke
Hi, the best way is to start with learning puppet vm and the according website: https://docs.puppetlabs.com/learning/index.html At https://puppetlabs.com/learn you have the possibility to get a guide through Puppet

[Puppet Users] new to puppet.

2015-03-19 Thread manyi
does anyone has a manifest I can use to: 1. Create an account for Mary, maryjane on all systems 2. Create a specific user on just a specific system (For example, create account john.doe on puppet-domain but not on puppetagent) -- You received this message because you are subscribed to the Goog

[Puppet Users] New to puppet

2014-10-08 Thread Krishna Krishna
Ok, I am newbie to puppet. So be nice. I may ask some stupid questions. I could not find some similar post so creating new post. I have not worked on puppet before except of downloading puppet on my linux machine and playing with some commands just to get feel of it. I do not work on Linux eit

[Puppet Users] new to puppet - simple ordering question

2014-09-10 Thread Phil Swenson
Hi, I have a puppet file I'm running via vagrant that sets up oracle and changes the system password. I need to make sure that the "oracle-xe" service is running before executing my password change script via sql plus. Here is the code: service {'oracle-xe': ensure => running } service {'i

Re: [Puppet Users] New to puppet and recieving mcollective error

2013-12-15 Thread Nan Liu
On Fri, Dec 13, 2013 at 2:05 PM, Alan Renouf wrote: > Im new to puppet and installed it in my home lab to mess with, when i > installed it i used the hostname rather than FQDN so went back and changed > puppet and reran the certificate tool to regenerate the certificates etc, > the agent works fi

[Puppet Users] New to puppet and recieving mcollective error

2013-12-13 Thread Alan Renouf
Im new to puppet and installed it in my home lab to mess with, when i installed it i used the hostname rather than FQDN so went back and changed puppet and reran the certificate tool to regenerate the certificates etc, the agent works fine now but i am getting an mccollective error i think, is

[Puppet Users] New to Puppet, trying to get it workign with a FreeBSD agent

2013-10-23 Thread Derek Cole
Hello, I have been following through some of the documentation trying to make use of puppet in a test environment. I went ahead and tried to install puppet-passenger and puppet dashboard. I think i have succesfully done this, because at mymaster.local:3000/ I get the dashboard webpage (albeit

Re: [Puppet Users] New to Puppet bash: command not found

2013-06-15 Thread Peter Bukowinski
Make sure the puppet binaries are in your path. -- Peter (from phone) > On Jun 15, 2013, at 12:11 PM, gfdadd...@gmail.com wrote: > > I have installed PE 2.8 server > None of the commands work =, for example... puppet --server list, puppet > agent --test,puppet agent --test --server=`hostname`,

[Puppet Users] New to Puppet bash: command not found

2013-06-15 Thread gfdaddy14
I have installed PE 2.8 server None of the commands work =, for example... puppet --server list, puppet agent --test,puppet agent --test --server=`hostname`, puppetca, I get the following error: *bash: puppetca: command not found * I get this no matter which command I try to run. ** *leas

Re: [Puppet Users] New to Puppet

2013-04-14 Thread Felix Frank
Hi, welcome aboard. I fear there may be no available solutions. When in doubt, ask here ;-) Although in the end of the day, if you manage to get puppet to do what you want, you're fine. Cheers On 04/04/2013 10:53 PM, HassanzDaName wrote: > Hello Everyone, > > > I'm a new Puppet user. I'm st

[Puppet Users] New to Puppet

2013-04-04 Thread HassanzDaName
Hello Everyone, I'm a new Puppet user. I'm still learning the ropes by going through the documentation available at docs.puppetlabs.com. Does anyone know where one might be able to find solutions to the exercises that they have posted? I have worked on a few of them but I'm not sure if I

Re: [Puppet Users] (New To Puppet)Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class sudo for pupclient on node pupclient

2013-01-22 Thread Jason Cochard
Something to help you avoid it in the future: Put all of your puppet manifests into a git repo (very good practice to get setup right away), and then put a git pre-commit hook that uses puppet parser validate to check for syntax errors. This will basically not let you commit new manifests if t

Re: [Puppet Users] (New To Puppet)Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class sudo for pupclient on node pupclient

2013-01-21 Thread Fusebox
yeah..I figured that out after posting..works after fixing it.. but thanks for looking into it and responding..appreciate much :) On Sunday, January 20, 2013 8:40:54 PM UTC-6, nseagoon wrote: > > It looks like a syntax issue (at a minimum): > > *package { "sudo-ldap":* > *ensure => presen

Re: [Puppet Users] (New To Puppet)Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class sudo for pupclient on node pupclient

2013-01-20 Thread Iain Sutton
It looks like a syntax issue (at a minimum): *package { "sudo-ldap":* *ensure => present,* *require => Package["sudo],* *}* *}* * * There isn't a trailing doublequote for the "sudo" line. On 20 January 2013 16:38, Fusebox wrote: > Hello Folks! > > I am trying to learn pu

[Puppet Users] (New To Puppet)Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class sudo for pupclient on node pupclient

2013-01-20 Thread Fusebox
Hello Folks! I am trying to learn puppet. Installed the puppet 3.0.2 and configured one node as the master and the other as the client. Generated the certs and all that. But, I seem to be doing something wrong wrt to the init.pp file. Attached is exact error and my current server configuration.

Re: [Puppet Users] New to Puppet -- why the puppet user

2012-11-30 Thread george
All answers helped a lot. Thanks, George On Tuesday, November 27, 2012 8:06:00 AM UTC-7, thbe wrote: > > 2012/11/27 Steven VanDevender > > >> [...] >> One gathers you're not really a practicing sysadmin. What you cite are >> a bunch of good reasons one should avoid running daemons and >> applicat

Re: [Puppet Users] New to Puppet -- why the puppet user

2012-11-27 Thread Thomas Bendler
2012/11/27 Steven VanDevender > [...] > One gathers you're not really a practicing sysadmin. What you cite are > a bunch of good reasons one should avoid running daemons and > applications as root. But you can't create and manage the mechanisms > that are used to avoid running things as root wi

Re: [Puppet Users] New to Puppet -- why the puppet user

2012-11-26 Thread Tim Mooney
In regard to: Re: [Puppet Users] New to Puppet -- why the puppet user,...: Because standard systems administration practice is to rarely if ever run anything at all as root. When it doesn't require root, that's absolutely true. This relates to the principle of least privilege. Ho

Re: [Puppet Users] New to Puppet -- why the puppet user

2012-11-26 Thread Steven VanDevender
Aaron Grewell writes: > To answer OP's question, the Puppet Master runs as user/group puppet. The > agent runs as root. Which is, of course, entirely desirable. puppetmaster needs access only to a limited set of files, which it needs only to serve to agents, and hence is best run in a dedicate

Re: [Puppet Users] New to Puppet -- why the puppet user

2012-11-26 Thread Steven VanDevender
Jerald Sheets writes: > Because standard systems administration practice is to rarely if ever > run anything at all as root. This practice, generally speaking, will > not pass ITIL, SOX, HIPAA, or PCI compliance auditing, and if > something like Puppet (which has complete run of your system) r

Re: [Puppet Users] New to Puppet -- why the puppet user

2012-11-26 Thread Jerald Sheets
Because standard systems administration practice is to rarely if ever run anything at all as root. This practice, generally speaking, will not pass ITIL, SOX, HIPAA, or PCI compliance auditing, and if something like Puppet (which has complete run of your system) ran as root, you could easily de

[Puppet Users] New to Puppet -- why the puppet user

2012-11-26 Thread george
I'm looking at Puppet as a configuration manager solution, and I was wondering Why is there a puppet user and group? I realize the obvious answer is that Puppet won't run w/o it, but I don't understand why it just wasn't set up with root access. thanks in advance, george -- You received th

[Puppet Users] New to Puppet and a Query

2011-07-07 Thread Rocky
My Query is -> I have CITRIX API Scripts written in Python language and i have a Server which provisions OS from the Template of Citrix when users login and when more number of users login it should autoprovision a OS from the existing template automatically and for this i have a device for load b

Re: [Puppet Users] New To Puppet - Two Questions

2010-07-28 Thread Ohad Levy
On Wed, Jul 28, 2010 at 7:42 AM, krisread wrote: > New to Puppet, heard about it for the first time at OSCON. > > Two quick questions: > > 1. Is there a web interface? This is really key to our company > since we have some dev/ops people but also some customer service > people (not command-lin

Re: [Puppet Users] New To Puppet - Two Questions

2010-07-27 Thread Carla Araujo
Hello Krisread! On Tue, Jul 27, 2010 at 20:42, krisread wrote: > could I write custom > extensions or modules to do things like list all of our customers who > have accounts on a server, add/remove customers from our database, > enable/disable logins to our web app, etc? > You can write your c

Re: [Puppet Users] New To Puppet - Two Questions

2010-07-27 Thread Dan Bode
On Tue, Jul 27, 2010 at 4:42 PM, krisread wrote: > New to Puppet, heard about it for the first time at OSCON. > > Two quick questions: > > 1. Is there a web interface? This is really key to our company > since we have some dev/ops people but also some customer service > people (not command-lin

[Puppet Users] New To Puppet - Two Questions

2010-07-27 Thread krisread
New to Puppet, heard about it for the first time at OSCON. Two quick questions: 1. Is there a web interface? This is really key to our company since we have some dev/ops people but also some customer service people (not command-line savvy) who need to do things. 2. Does it just manage server

[Puppet Users] new to puppet. how to add condition in a class?

2009-10-12 Thread william Famy
Hi. II am trying puppet after cfengine and I am looking for a method to use a class if a file exist. exemple I have a condition class. I have to create on the server the condition class but i do not want to have it execute on every client. It is not easy for me to set on the server the condition

[Puppet Users] new to puppet, wondering about gentoo

2008-11-15 Thread kevin
I am very new to puppet, and am wondering about puppet's support for gentoo. Would be better off targeting Ubuntu for a deployment? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to t