[Puppet Users] Re: Firewall between master and client?

2009-11-20 Thread zoniguana
Depends, really, on your firewall and what you want to accomplish. Your clients need to be able to initialize connections to the server's port 8140 (TCP). Your server needs to be able to reply from its TCP 8140 back to the client, but does not need to initiate connections. If you want to push chang

[Puppet Users] Re: puppetrun help

2009-01-30 Thread zoniguana
Found the answer I needed - looks like other folks have run into this too, and I just didn't see it. On Jan 30, 12:04 pm, rjustinwilli...@gmail.com wrote: > Hi folks > > I'm trying to have the puppetmaster send a puppetrun command out, and not   > getting very far with it. > > I have in the man

[Puppet Users] language trouble with metaparameters

2008-10-16 Thread zoniguana
I'm probably being dense here, but Is if possible to include a class, onlyif a given file exists? If not, can I put an onlyif in all the file/cron/service/etc statements, so that they are only executed once that file is put in place (I.e. only run phase 2 of the configging once a file is in p

[Puppet Users] Re: autosign issues

2008-10-14 Thread zoniguana
ct 13, 11:12 am, Luke Kanies <[EMAIL PROTECTED]> wrote: > On Oct 10, 2008, at 4:05 PM, zoniguana wrote: > > > > > Is there a way that I can simply use the hostname, without the domain, > > to get an autosigned cert? > > Alternatively, can I grant access to a block o

[Puppet Users] autosign issues

2008-10-10 Thread zoniguana
Hi folks Back again with another head-scratcher... I'm trying to get autosigning to work, and am partially succeeding, but not really... Running puppet v24.4, and not yet ready to upgrade unless I have to On puppetmaster, I have autosign.conf (and puppet.conf indicates autosign = /etc/puppet/au

[Puppet Users] Re: The puppet equivalent of mkdir -p

2008-10-09 Thread zoniguana
You also could do this by having your directory structure on your fileserver, of src/path/my Then file { "/home/jeff/src": mode => 0755, owner => jeff, group => jeff, ensure => directory, recurse => true; } If that directory structure is to be common across multiple users, it