Displaying 20 results from an estimated 20000 matches similar to: "puppetrun"
2008 Apr 11
2
YASP on puppetrun
YASP... Yet Another SSL Problem, this time on puppetrun.
$ sudo puppetrun -p 10 --host anotherhost -t aze
Failed to load ruby LDAP library. LDAP functionality will not be available
Triggering anotherhost
Host anotherhost failed: Certificates were not trusted: tlsv1 alert unknown ca
anotherhost finished with exit code 2
Failed: anotherhost
Running with "strace -f" shows that
2009 Jun 08
4
Puppetrun timeout
I''m using puppet 0.24.7-4. I have a situation where I have some very long
running puppet runs in order to do upgrades (removing applications from load
balancers gracefully, et cetera).
My puppet runs triggered via puppetrun are finishing successfully:
Jun 8 20:31:29 puppetd[10178]: Finished catalog run in 345.18 seconds
Puppetrun itself is timing out:
err: Connection timeout calling
2009 Jul 10
2
using noops from puppetrun
Hi All,
I was surprised to notice that a call to noop from puppetrun did not work as
expected.
on the agent side (for this case the server side..), I ran:
puppetd --verbose --no-daemonize (where listen is set in the puppet.conf)
on the puppet server side(in this case the client side), I ran:
puppetrun --noop --host SERVER
notice: SERVER(IP) triggered run
info: Caching catalog at
2013 Nov 15
3
Upgrade from Puppet 2.7.20 to latest !!!
Dear All,
I have my puppet servers and clients on puppet 2.7.20 and I am planning to
upgrade to the latest version.
But the problem is that I have a lot of modules (downloaded from forge and
few of my own) which used by hundreds of puppet clients.
I need to know
1) Will the functionality of these modules get affected after this upgrade ?
2) Other than ritual of being on the latest verison, are
2010 Dec 06
7
error running puppetrun
Hi,
I have been getting the below error for sometime now. Both master and
client are using version 0.24.8.
Output from /var/log/messages
err: Could not call puppetmaster.getconfig: #<#<Class:0xb7b50a9c>:
execution expired>
err: Could not retrieve catalog: execution expired
P.S- all of this was working absolutely fine and suddenly has started
to misbehave.
Regards,
--
You
2011 Jul 22
9
Random error in the recovery catalog
Hello,
I randomly errors like this:
Fri Jul 22 09:01:41 +0000 2011 //SERVER.fqdn/Puppet (err): Could not
retrieve catalog from remote server: end of file reached
Fri Jul 22 09:01:41 +0000 2011 //SERVER.fqdn/Puppet (notice): Using
cached catalog
Fri Jul 22 09:01:41 +0000 2011 //SERVER.fqdn/Puppet (err): Could not
retrieve catalog; skipping run
Here are the versions:
puppetmaster
2008 May 15
2
config checks and service bounces
Puppeteers,
I''ve seen things in the documentation to make me think this is
possible but I''m not sure how to implement it. Here''s what I''d like to
do:
puppetd pulls down a config file, say httpd.conf
BEFORE puppetd moves it to $path, I''d like to have it check it''s
integrity with apachectl configtest
IF configtest passes, then puppetd should
2013 Oct 15
2
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find terminus puppetsvr for indirection catalog
>Error: Could not retrieve catalog from remote server: Error 400 on SERVER:
Could not find terminus puppetsvr for indirection catalog
I had a working puppet install (new) with 2 agents working well. I added
puppet dashboard and the inventory part which is also working well.
However, clients are talking to the server (putting info into dashboard
inventory), but not pulling down the
2010 Apr 12
10
Cron question
Hello,
Why the following lines doesn''t work?
cron { "app" :
command => ""nice -n -10 /usr/bin/php
/var/www/public_html/rotinas/rotinas.php 2>&1>> /var/log/app.log",
environment => "PATH=$PATH",
user => root,
hour => ''*'',
minute =>
2010 Jul 22
9
First Foray into Parameterized Classes.... not so good
I have this:
class foo::foobar ($version) {
}
which is called like this:
class facility::sanjose inherits facility::common {
class { foo::foobar: version => "1.3.13" }
}
puppet complains with this on the client:
Could not retrieve catalog from remote server: Error 400 on SERVER:
Could not find parent resource type ''facility::sanjose'' of type
hostclass in
2007 Dec 20
1
Puppetrun as normal user
What is required to allow running puppetrun as a normal user? The
documentation implies that puppetrun has to be run as root to get
access to the SSL certificates. What permissions need to be set to
allow normal users (or a group of users) to perform puppetrun? Is it
possible to create a more-public certificate that can only be used for
puppetrun? We could use the ability to have developers
2007 Apr 13
2
puppetrun
Hi
When using puppetrun to trigger machines to get and apply their
configuration, it will only trigger the machine when executing puppetrun for
the second time:
puppetmaster # puppetrun --host puppetclient
puppetclient log:
-- snip
Apr 13 08:19:49 puppetd[20208]: puppetmaster(172.16.34.12) triggered run
Apr 13 08:20:08 puppetd[20208]: puppetmaster(172.16.34.12) triggered run
Apr 13 08:20:08
2007 Nov 28
7
puppetrun failing: "connect'': tlsv1 alert unknown ca"
I''m trying to get puppetrun to work, without luck so far.
I have my puppetmaster and clients working fine with the clients polling
the master. Now I want to be able to force an update. Using version
0.23.2
On the client I set listen=true and created the namespaceauth.conf file.
Restarted puppetd and it appears fine.
On the master I run puppetrun as root and get
root@plane:/etc/puppet#
2008 Jun 27
2
puppetrun?
Hi,
I''m having trouble getting puppetrun to work, it returns:
# puppetrun --debug --host serverb
debug: Puppet::Network::Client::Runner: defining puppetrunner.run
Triggering serverb
debug: Calling puppetrunner.run
warning: peer certificate won''t be verified in this SSL session
err: Could not call puppetrunner.run: #<RuntimeError: HTTP-Error: 500 Internal Server Error >
2008 Jan 14
5
Puppetrun denied by puppetd
Hi,
I have a Gentoo server running puppetmasterd from Puppet 0.24.1 and a
Ubuntu server running puppetd from Puppet 0.23.2.
I have added listen=true to the [puppetd] section on the client and run
puppetd --debug. I then run puppetrun --debug --host hostname on the
puppetmaster server. This is the output I get:
Puppetmaster:
# puppetrun --debug --host hostname
Failed to load ruby LDAP library.
2008 Oct 08
9
Inheritance syntax question
If I try the following:
class foo {
define bar ($text) {
file {"/tmp/foo.txt":
content => $text,
}
}
bar { "hello":
text => ''Hello World'',
}
}
class foo2 inherits foo {
Foo::bar["default"] {
text => ''Hello World Again'',
}
}
I get: "Syntax error at '':''; expected
2006 Dec 11
1
How to deal with log and puppetrun?
Hello,
Now that I can run my client with the --silent and --no-client option,
Id like to centralize the logs on my puppet server and not on my puppet
clients. The problem is that so far I havent found an option to tell
puppetrun to get the logs back on my server.
Is that possible to do such a thing with puppetrun? (running on v.0.18.4)
Thanks in advance.
--
Jean-Christophe Lacaze
Ministry
2007 Feb 16
1
Can''t get puppetrun to work
I''ve tried this on two different setups all running 0.22.1. One group
is Ubuntu/OpenBSD the other is RHEL4/RHEL4.
Master has signed client certs. puppetd works fine from client.
If I run from the server side:
root@server:~# puppetrun --host client_host.example.com
Failed to load ruby LDAP library. LDAP functionality will not be available
Triggering client_host.example.com
Host
2008 Sep 30
6
something wrong with puppet client or Server
Hi All,
I have running puppet client and server on solaris 10 x86.
Now days some of puppet client behaviors is something weird !!! or May
be i am missing something...
for ex.
I created class to add one line in /etc/vfstab . but puppet client
did it successfully 1st time ...But .. After few days , i saw there
are same line has been added more than 250 times.. [ see same line is
added so many
2010 Jun 28
7
Bind Module
Anyone know where I can find a good chrooted named module for centos?
Named as chroot is ugly... soft and hard links everywhere...
Doug
--
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 unsubscribe from this group, send email to