Forgot to say - Running Puppet 0.24.5 Ruby 1.8.5
2008/11/3 Matt <[EMAIL PROTECTED]>:
> I'd like to change the puppet run interval in the puppet.conf file
> after the first catalog run.
>
> I've tried by using service and notify, also tried with a exec
> ["/etc/init.d/puppet" restart] and a reload
I'd like to change the puppet run interval in the puppet.conf file
after the first catalog run.
I've tried by using service and notify, also tried with a exec
["/etc/init.d/puppet" restart] and a reload but to no avail. Puppet
will terminate if done via service, subscribe/notify, and exec
restar
Yes, Ill be at LISA. Would be great to meet other puppet users there.
Best Regards
Bjørn Dyresen
Simula Research Laboratory
2008/11/3 Juri Rischel Jensen <[EMAIL PROTECTED]>
>
> Hi All
>
> Luke and I are attending LISA08 in San Diego next week. Are there any
> other Puppeteers who are attendi
Hi All
Luke and I are attending LISA08 in San Diego next week. Are there any
other Puppeteers who are attending? Or living in the area and
interested in a meet-up with me and Luke...?
--
Med venlig hilsen/Best regards
Juri Rischel Jensen
Fab:IT ApS
Vesterbrogade 50
DK-1620 København
Tlf: +
I would recommend you to switch to cron, this way you also avoid the memory
abuse by puppetd.
Ohad
On Mon, Nov 3, 2008 at 8:53 PM, Matt <[EMAIL PROTECTED]> wrote:
>
> Forgot to say - Running Puppet 0.24.5 Ruby 1.8.5
>
> 2008/11/3 Matt <[EMAIL PROTECTED]>:
> > I'd like to change the puppet run in
How can I use regular expression in manifests ?
Something like this :
if "$productname" =~ /ProLiant/ {
}
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to pu
> Luke and I are attending LISA08 in San Diego next week. Are there any
> other Puppeteers who are attending? Or living in the area and
> interested in a meet-up with me and Luke...?
I live in the area and think meeting up is a great idea. Are people thinking a
BOF or of getting away from th
you could do a simple workaround with exec
e.g.
...
onlyif => 'echo $productname |grep Proliant'
...
On Mon, Nov 3, 2008 at 6:03 PM, Vincent Louviaux <[EMAIL PROTECTED]>wrote:
> How can I use regular expression in manifests ?
> Something like this :
> if "$productname" =~ /ProLiant/ {
>
>
> }
>
Juri Rischel Jensen writes:
> Hi All
>
> Luke and I are attending LISA08 in San Diego next week. Are there any
> other Puppeteers who are attending? Or living in the area and
> interested in a meet-up with me and Luke...?
I'll be at LISA.
Is Luke planning on running a Puppet BOF as he
> Is Luke planning on running a Puppet BOF as he has in past years?
Not sure if that's the plan, but if nothing else I was planning on penciling in
a PUG (Puppet Users Group) BOF on one night unless we make some other plans -
though probably wouldn't hurt to do both a socializing event (read: din
I have a define that acts as a convenience wrapper around the user
type and a few other things.
With the 'user' type, if don't pass the uid parameter, it will default
to let the system auto-assign it. However, passing uid => null,
false, -1, etc all try and set a specific uid, which is obv
Hi
> How can I use regular expression in manifests ?
> Something like this :
> if "$productname" =~ /ProLiant/ {
>
>
> }
the puppet language doesn't support this kind of expression (yet).
greets pete
--~--~-~--~~~---~--~~
You received this message because you
On Mon, Nov 03, 2008 at 11:44:08AM -0700, Tim Harper wrote:
>
> I have a define that acts as a convenience wrapper around the user
> type and a few other things.
>
> With the 'user' type, if don't pass the uid parameter, it will default
> to let the system auto-assign it. However, passing u
I appear that this will only work if the array is declared in the
manifest.
I'm attempting to make resolv.conf a template in which I can specify
by node which array of name servers to use. which looks like this:
$nameserver = [ "1.2.3.4", "1.2.3.5"]
This works fine if it's declared in the manif
I'm new to puppet and /etc/opt/csw/puppet/puppetd.conf is empty.
I haven't found any further configuration of puppetd.conf on
http://reductivelabs.com/trac/puppet
What do I need to do next?
Thanks!
--~--~-~--~~~---~--~~
You received this message because you are
Got this weird error message and no idea what part of the manifest is
offending.
Any suggestions on what to look for?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, s
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Ed Greenberg wrote:
> Got this weird error message and no idea what part of the manifest is
> offending.
>
> Any suggestions on what to look for?
Platform, version, logs, debug, example of the manifests
Regards
James Turnbull
- --
Author of:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Loobster wrote:
> I'm new to puppet and /etc/opt/csw/puppet/puppetd.conf is empty.
>
> I haven't found any further configuration of puppetd.conf on
> http://reductivelabs.com/trac/puppet
>
> What do I need to do next?
Individual Puppet configuratio
I set the interval using both the config file and the command line.
Works fine. I believe I did this originally because the config file
alone did not work. But that was in 0.23. I haven't retested in later
versions, since everything is working.
Steven
> -Original Message-
> From: puppet-
You want uid => undef
--Paul
On Mon, Nov 3, 2008 at 11:44 AM, Tim Harper <[EMAIL PROTECTED]> wrote:
>
> I have a define that acts as a convenience wrapper around the user
> type and a few other things.
>
> With the 'user' type, if don't pass the uid parameter, it will default
> to let the system
Can't undef only be used with the inheritance syntax?
The closest we have to initializing to undefined is an empty string
('') - you can compare this quite easily in .6 - check the language
tut - but you need to do a case/selector for comparism pre-.6
E.g.;
case $uid {
'': {
user {
21 matches
Mail list logo