Displaying 4 results from an estimated 4 matches for "myhost2".
Did you mean:
myhost
2009 Jun 08
4
Puppetrun timeout
...78]: Finished catalog run in 345.18 seconds
Puppetrun itself is timing out:
err: Connection timeout calling puppetrunner.run: execution expired
Host myhost failed: Connection Timeout
myhost finished with exit code 2
I''m calling puppetrun with --foreground: puppetrun --host=myhost
--host=myhost2 --host=myhost3 --foreground --parallel
However, I don''t see anything in the puppetrun doco that hints at setting
the execution exiry time. Any suggestions?
Pete
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Group...
2004 Dec 02
1
Can RH AS3 be a ADS member with winbind+nss+krb5?
Samba is trying to be a member server in an AD in native mode, using
winbind, nss, and kerberose. There are 3 kdc's (2 are Win2003, 1 is
Win2000), samba server is RH-AS3 + Samba version 3.0.9 (from samba.org)
+ krb5 1.3.1-6 (from Fedora Core). I thought I had things working (join
succeeded, could access shares, modify files), and then it stopped
working. After clearing out the host account
2013 Jun 30
0
Same credentials stored in auth.conf for many servers
...redentials in
auth.conf file and make appropriate mappings to servers:
[auth-$SERVICE-$HOSTNAME]
credentials=$CREDENTIALS
Is it possible to use the same credentials for many servers without
explicitly describing it?
For example replacing:
[auth-libvirt-myhost1]
credentials=mycred
[auth-libvirt-myhost2]
credentials=mycred
with:
[auth-libvirt-myhost*]
credentials=mycred
or
[auth-libvirt-any]
credentials=mycred
regards
--
Maciej GaĆkiewicz
Shelly Cloud Sp. z o. o., Sysadmin
http://shellycloud.com/, macias@shellycloud.com
KRS: 0000440358 REGON: 101504426
2006 Dec 21
7
Overriding types?
...his?
There are only 5 one-offs in this case, so maybe I should just use a
selector for "source" to check $hostname within the solserver class?
If so, can I use multiple hostnames as a selector, like this:
remotefile { "/etc/shadow":
source = $hostname ? {
myhost1, myhost2, myhost3 => "path/a",
default => "path/b"
}
}
In short, is there a way to override "types" without putting them in
seperate classes? There are times where I want to override, but still
want to include a class that defines the same thing. Being able...