[Puppet Users] Debug output white on white background

2010-07-01 Thread Klaus Ethgen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hello, if I test my configuration by using puppet --debug it outputs the debug messages in white colour. Colours are not per see bad but it is a great challenge to read white text on white background. Is there any way to configure the text color

[Puppet Users] Re: custom types not used by puppet

2010-07-01 Thread bowlby
Hi Dan, You're correct I'm running puppetd/master on the same server, no client/server stuff yet. It was my un-educated guess that puppet isn't able to find the libs; I do not get an error message when I run: 'puppetd --test --debug --trace --server=', the db's just do not get created (nor

Re: [Puppet Users] Debug output white on white background

2010-07-01 Thread Peter Meier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 if I test my configuration by using puppet --debug it outputs the debug messages in white colour. Colours are not per see bad but it is a great challenge to read white text on white background. Is there any way to configure the text color of

[Puppet Users] Managing some (but not all) user files

2010-07-01 Thread Robert Scheer
Hi, I have set up a module that realizes (groups of) users from a set of virtual users, and this works well. What I'd like to do now, is to build in some system where user files are distributed as well, but with the following features: - this should work for previously unspecified files and

[Puppet Users] Re: ERB / Tagging...

2010-07-01 Thread jb
This also vexes me, I also would love to use 'all_tags', but it's not consistent. The issues is best described in the following bug, I believe: http://projects.puppetlabs.com/issues/3049 On Jun 30, 10:59 am, Dan Carley dan.car...@gmail.com wrote: On 30 June 2010 18:40, CraftyTech

Re: [Puppet Users] Re: ERB / Tagging...

2010-07-01 Thread Dan Carley
On 1 July 2010 18:17, jb jeffb...@gmail.com wrote: This also vexes me, I also would love to use 'all_tags', but it's not consistent. The issues is best described in the following bug, I believe: http://projects.puppetlabs.com/issues/3049 Good call. I wasn't aware there was an existing

Re: [Puppet Users] Package requires....

2010-07-01 Thread Dan Carley
On 1 July 2010 00:32, Douglas Garstang doug.garst...@gmail.com wrote: If I have a package { foo: ensure = installed; require = something } in a module, AND I also have a Package { require = Class['yum::client']} in site.pp, what happens in the module? Does the package in the module require

Re: [Puppet Users] Package requires....

2010-07-01 Thread Douglas Garstang
On Thu, Jul 1, 2010 at 11:22 AM, Dan Carley dan.car...@gmail.com wrote: On 1 July 2010 00:32, Douglas Garstang doug.garst...@gmail.com wrote: If I have a package { foo: ensure = installed; require = something } in a module, AND I also have a Package { require = Class['yum::client']} in

[Puppet Users] Interesting Bad Certificate Problem

2010-07-01 Thread Aaron Blew
All, I'm having an interesting certificate problem with a host I provisioned today. The host was provisioned and puppet was installed as part of the post-os provisioning process. After I signed the certificate I see the following on the client side: [r...@client ~]# puppetd --verbose

[Puppet Users] Splitting classes into separate files

2010-07-01 Thread Douglas Garstang
The module standards page at http://projects.puppetlabs.com/projects/puppet/wiki/Module_Standards advises than when there are multiple classes in a module, you should split them into separate files. Each (externally visible) define be in a separate file, named after the class to facilitate

[Puppet Users] Re: Splitting classes into separate files

2010-07-01 Thread Chuck
Move the classes directory to /etc/puppet/modules/repo/manifests/classes On Jul 1, 6:46 pm, Douglas Garstang doug.garst...@gmail.com wrote: The module standards page athttp://projects.puppetlabs.com/projects/puppet/wiki/Module_Standards advises than when there are multiple classes in a

[Puppet Users] selboolean with selinux disabled

2010-07-01 Thread Markus Falb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, err: //cobbler::web/Selboolean[httpd_can_network_connect]: Failed to retrieve current state of resource: Execution of '/usr/sbin/getsebool httpd_can_network_connect' returned 1: /usr/sbin/getsebool: SELinux is disabled Is this behaviour

Re: [Puppet Users] selboolean with selinux disabled

2010-07-01 Thread Frank Sweetser
On 7/1/2010 9:31 PM, Markus Falb wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, err: //cobbler::web/Selboolean[httpd_can_network_connect]: Failed to retrieve current state of resource: Execution of '/usr/sbin/getsebool httpd_can_network_connect' returned 1: /usr/sbin/getsebool:

Re: [Puppet Users] selboolean with selinux disabled

2010-07-01 Thread Patrick Mohr
On Jul 1, 2010, at 6:31 PM, Markus Falb wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, err: //cobbler::web/Selboolean[httpd_can_network_connect]: Failed to retrieve current state of resource: Execution of '/usr/sbin/getsebool httpd_can_network_connect' returned 1:

Re: [Puppet Users] Package requires....

2010-07-01 Thread christopher floess
Hey, this is sort of hijacking the thread, so if need be, please, I can start another thread for it, but could someone explain the code from the OP here. I feel like this is sort of the next step in puppet functionality that I need to learn (I'm still new). I'll start by pointing out three

Re: [Puppet Users] Package requires....

2010-07-01 Thread Patrick Mohr
On Jul 1, 2010, at 9:05 PM, christopher floess wrote: Hey, this is sort of hijacking the thread, so if need be, please, I can start another thread for it, but could someone explain the code from the OP here. I feel like this is sort of the next step in puppet functionality that I need to

[Puppet Users] [puppet-users] apt and gem package with the same name

2010-07-01 Thread hernan
I'm building a puppet manifest for an Ubuntu machine that needs to have both of these on it: package { memcached: provider = gem, ensure = 0.18.0 } package { memcached: provider = apt, ensure = installed } This fails with the following error: err: Could not retrieve

[Puppet Users] Data Backup

2010-07-01 Thread Demitrius Robinson
Most backup software programsdata offer some form of data . Filtering allows you to filter certain types of files for backup. For example, you can select to backup all of the images in your hard drive- giving you the freedom to refine your data backup in ways that best suit your needs. This

[Puppet Users] vardir variable not coming through

2010-07-01 Thread noob-puppeteer
I must be missing something with how puppet.conf works. I have configured puppet.conf like so: [main] vardir = /var/xyz/puppet I have a very simple site.pp file { $vardir/touch: ensure = present, } I am running puppet 0.25.5, and have the puppetmasterd and puppetd on the same server.

Re: [Puppet Users] Package requires....

2010-07-01 Thread Douglas Garstang
On Thu, Jul 1, 2010 at 9:11 PM, Patrick Mohr kc7...@gmail.com wrote: On Jul 1, 2010, at 9:05 PM, christopher floess wrote: Hey, this is sort of hijacking the thread, so if need be, please, I can start another thread for it, but could someone explain the code from the OP here. I feel like