search for: foohost

Displaying 5 results from an estimated 5 matches for "foohost".

Did you mean: donhost
2012 Aug 09
4
Error 400 on Server: Another local or imported resource exists with the type and title Sshkey
I am attempting to remove an old ssh host key from /etc/ssh/ssh_known_hosts. In my manifest, I have the following: # add keys @@sshkey { $hostname: ensure => present, type => "rsa", key => $sshrsakey, } # remove key @@sshkey { "foohost": ensure => absent, type => "rsa", } Sshkey <<| |>> But I get this error on puppet agents: root@harper~> puppet agent -t info: Retrieving plugin info: Loading facts in datacenter info: Loading facts in datacenter err: Could not retrieve catalog from...
2007 Feb 14
2
Parameter require is already set on ...
...name" } exec { "/bin/mkdir -p $path": creates => $path } exec { $cvscmd: cwd => $path, env => ["CVS_RSH=/usr/bin/ssh" ], require => Exec["/bin/mkdir -p $path"], require => Sshkey["foohost.usyd.edu.au"], } sshkey { "foohost.usyd.edu.au": ensure => present, key => "AAAA...<snip>...", type => "ssh-rsa" } } However the two requires in the exec there produce the following warning: err: Could n...
2007 Feb 14
1
newbie: logical AND, OR in selectors ?
...r conditions, by ANDing or ORing them together? Eg, I am trying to write a cvsserve component which can optionally take a username (or connect anonymously) and can also optionally take a cvs tag name to export. So there would be four different combinations of cvs command to exec, eg: cvs -d foohost.com:/cvsroot checkout barproject cvs -d puppet@foohost.com:/cvsroot checkout barproject cvs -d foohost.com:/cvsroot export -r REV1.1 barproject cvs -d puppet@foohost.com:/cvsroot export -r REV1.1 barproject The component definition would begin something like: define cvsserve($source, $path, $user...
2011 Apr 16
0
Bug#623058: logcheck: tweak 'rsyslogd was HUPed' filter
Package: logcheck Version: 1.3.13 Severity: minor Tags: patch Hi, Logcheck reports messages of the form: Mar 15 06:25:26 foohost rsyslogd: [origin software="rsyslogd" swVersion="5.7.6" x-pid="3301" x-info="http://www.rsyslog.com"] rsyslogd was HUPed I suggest the following tweak to /etc/logcheck/ignore.d.server/rsyslog: diff -u /etc/logcheck/ignore.d.server/rsyslog /tmp/buffer-conten...
2001 Dec 10
10
hang on exit bug under Linux
>From what I understand, the problem is due to people's disagreement about what the "correct" behavior should be. I'm pretty sure that the following is the correct behavior from running rsh and ssh often (both fsecure and openssh). Lets say you have a stupid script that does while 1 do sleep 1 done Called foreverSleep on your remote host: rsh remotehost