Re: [Puppet Users] Puppet Dashboard packages updated for V1.0 release

2010-05-05 Thread Ian Ward Comfort
$ curl -sLO \ http://yum.puppetlabs.com/base/puppet-dashboard-1.0.0-3.noarch.rpm && rpm -qip puppet-dashboard-1.0.0-3.noarch.rpm | grep Signature -- Ian Ward Comfort Systems Team Lead, Academic Computing Services, Stanford University -- You received this message because you are s

Re: [Puppet Users] Puppet Dashboard packages updated for V1.0 release

2010-05-05 Thread Ian Ward Comfort
On 5 May 2010, at 5:26 PM, James Turnbull wrote: I've fixed it now and added some further fixes to the spec file provided by Todd Zullinger. Thanks, both. -- Ian Ward Comfort Systems Team Lead, Academic Computing Services, Stanford University -- You received this message because yo

Re: [Puppet Users] best way to ensure (yum) package repository freshness ?

2010-11-18 Thread Ian Ward Comfort
ce default is in scope). 'yum clean expire-cache' is the cheapest way to ensure an updated view of your yum repos, without deleting too much metadata which may need re-downloading in case the repos are unchanged. Note that this clean would happen on every Puppet run, of course, and that ma

Re: [Puppet Users] Of classes, tags, and collections

2010-11-18 Thread Ian Ward Comfort
nships could be extremely powerful and useful. Has anybody > managed to get anything like this working, or does anybody know a > reason why this shouldn't work? You may be running across something as simple as a slight variation on bug #4560: https://projects.puppetlabs.co

Re: [Puppet Users] Puppet services/ folder

2010-12-06 Thread Ian Ward Comfort
efault. (You may also want to parameterize on the $environment fact, &c.) Incidentally, we (the Stanford University Libraries) adopted this modules/services distinction from the other, larger Puppet deployment here at Stanford, and it's worked very well for us. -- Ian Ward Comfort Syst

[Puppet Users] Re: ANNOUNCE: Puppet 2.6.7 final!

2011-03-25 Thread Ian Ward Comfort
promotion to stable. -- Ian Ward Comfort Systems Team Lead, Academic Computing Services, Stanford University -- 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. To un

Re: [Puppet Users] Puppetdashboard 1.1.0 spec file

2011-04-06 Thread Ian Ward Comfort
0 added to the Puppet Labs yum repository in the near future? We've been running the official 1.0.4 RPM quite successfully, and it would be great to get those new features through the same channel. -- Ian Ward Comfort Systems Team Lead, Academic Computing Services, Stanford University --

[Puppet Users] Re: [Puppet-dev] "Open Source Team" planning meeting summary 2011-06-1

2011-06-15 Thread Ian Ward Comfort
ray = ['a','b','c'] $var = myfunction('first arg', $array) $empty_array = [] $other_var = myfunction($empty_array) -- Ian Ward Comfort Systems Team Lead, Academic Computing Services, Stanford University -- You received this message because y

[Puppet Users] Exported resources, sshkey (was Re: Notifying a service when exported resources go away)

2009-07-28 Thread Ian Ward Comfort
ck down this issue (and should probably do so in the 0.25 beta, anyway), but I wonder if anyone else has seen this. -- Ian Ward Comfort System Administrator, Student Computing, Stanford University --~--~-~--~~~---~--~~ You received this message because you ar

[Puppet Users] Re: Exported resources, sshkey (was Re: Notifying a service when exported resources go away)

2009-07-28 Thread Ian Ward Comfort
On 28 Jul 2009, at 11:00 PM, David Schmitt wrote: > Ian Ward Comfort wrote: >> For me, the killer app for storeconfigs is exported SSH host keys. >> That's information that my puppetmaster *doesn't* have in its >> manifests, and needs to collect f

[Puppet Users] Re: lunch at Google on Wednesday for Puppet Campers?

2009-09-28 Thread Ian Ward Comfort
especially if your flight is on time and you make the 11:31 southbound from Millbrae. See: http://flysfo.com/web/page/atsfo/airtrain/map/index.html http://www.caltrain.com/timetable.html#weekday-southbound -- Ian Ward Comfort System Administrator, Student Computing,

[Puppet Users] Re: template issue: nested variables?

2009-10-29 Thread Ian Ward Comfort
$iface") } N.B. due to the way Facter alphafies interface names, there's an unavoidable limitation when working with network facts that the interfaces eth0.1 and eth0:1 are indistinguishable. (Actually, I'm not even sure how Facter behaves in this case.) -- Ian Ward Comfort

Re: [Puppet Users] Templates and loops..

2009-11-25 Thread Ian Ward Comfort
the systems so I can generate a > configuration file (loop through each processor number). >> <% for cpu in (0..processorcount) %> Try: <% for cpu in (0 .. processorcount.to_i) %> -- Ian Ward Comfort Systems Team Lead, Student Computing, Stanford University --

Re: [Puppet Users] Templates and loops..

2009-11-25 Thread Ian Ward Comfort
On 23 Nov 2009, at 7:33 AM, Christopher Johnston wrote: > Its definitely there.. I even put a <%= processorcount %> to make > sure the variable is set. > > <% processorcount.to_i-1 %> > <% for cpu in (0..processorcount) %> Try: <% for cpu in (0 .. p

Re: [Puppet Users] RPM package install/upgrade issue

2009-12-16 Thread Ian Ward Comfort
different name? (Say, openssl-yoursite?) We avoid building our own packages with the same name as official distro packages to avoid this and similar problems. -- Ian Ward Comfort Systems Team Lead, Academic Computing Services, Stanford University -- You received this message because yo

Re: [Puppet Users] making exceptions

2010-01-20 Thread Ian Ward Comfort
} class puppet::server { include puppet::client::disabled } Now it's safe to apply puppet::client to all your nodes, including your puppetmaster, because the ::disabled class will override the management of puppet.conf on the puppetmaster (which presumably

Re: [Puppet Users] making exceptions

2010-01-21 Thread Ian Ward Comfort
On 21 Jan 2010, at 7:47 AM, Rob McBroom wrote: On Jan 20, 2010, at 6:29 PM, Ian Ward Comfort wrote: I think a lot of shops do this by creating special "disabling" classes for those one-off systems. To use your puppetmaster example (untested pseudocode ahead): class pupp