Displaying 20 results from an estimated 2000 matches similar to: "puppetdoc and wrong comparison"
2010 Jun 06
19
Collecting _all_ ssh keys
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Hello,
I read and find a way (well, there seems to be several equal
implementations) to collect the ssh keys of machines. However they all
give only the choice to choose between the key formats.
But is there a way to collect both keys of a machine, the rsa _and_ the
dss key (and maybe the rsa1 too)? I didn''t find a way to solve this as
2010 Nov 10
4
Custom facts in current and old environments
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Hello,
I read that there is several problems about custom facts on this list.
However, none is serving my task exactly so I start another. (Topic
»custom facts in legacy puppet 0.24.[89]« is the might be the same issue
but that gets no answer.)
My problem is that I have to serve clients with different versions of
puppet. The systems running ubuntu
2011 Jan 06
2
puppetdoc - referring to main class
I''m being a good boy and using the puppetdoc tool to document my
classes, however I''m hitting a minor annoyance.
The top level documentation for a module (let''s call it "example) is
pulled from example/README (not example/manifests/init.pp), okay I can
cope with that.
The documentation for the class in example/manifests/init.pp ends up
as example::example (hmm,
2008 Feb 20
5
procmail deliver and envelope-to
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
first of all, please reply private as I am not subscribed to the list.
But if this question takes to much traffic I can subscribe.
My problem is that I have to use procmail (as it can call external
programs) which finally calls deliver. My main rules are sieve and they
work find except that I cannot use subaddress matching in envelope to
(not
2002 Nov 29
6
Version 2.2.6 and above are not able to store big files over 2GB
Hello,
when I store a file biger than 2GB to a samba server version 2.2.5
everythink works fine. But when I do that with a server version 2.2.6 or
2.2.7 the saving fails on the 2GB limit. The problem can be seen with
windowsclients or with smbclient (any version > 2.2.5).
I did some debuging and find that the lseek64 fails. But I didn't find the
reason.
Regards
Klaus Ethgen
2011 Mar 14
2
Problemes with ControlPersist
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Hello,
There seems to be just a bit to do with the latest openssh (5.8p1) and
ControlPersist. I encountered two problems:
1. When I use ControlPersist in combination with ProxyCommand to reach a
other host over that proxy I get the following message:
Bad packet length 1397966893.
Disconnecting: Paket corrupt
When I fist ssh to
2010 Apr 27
7
Puppetmaster with stored configs leaks file descriptors on CentOS 5
Hi folks,
When I enabled stored configs on my puppet master, it began keeping lots
of open connections to the MySQL server (as far as I understand it
opened one connection for each client run and never closed them).
I set up the server to close idle connections after 5 minutes. Now the
database server does close the connections but the puppet master keeps
them in CLOSE_WAIT state and eventually
2007 Nov 23
7
Modules design patterns ?
Hi,
I''m writing puppet modules since a couple of weeks now, so I''m still
considering myself as a new comer in this field.
It seems that modules I can find on the web or the recipe page on the
wiki almost all use a design pattern where the module is shipped in one
or several class(es) whose configuration are determined by "global" or
nodes variables ala:
module:
class
2007 Nov 13
7
Exported resources & exec ?
Hi,
I''m sorry if that''s a FAQ, I also know exported resources are a still
experimental. So my problem might well be a design limitation of how
exported resources are working.
My issue: I''m trying to export a file resource that is created by an
exec block. The file is exported fine and collected fine but it is
always empty on the other host.
The puppet snippet:
class
2011 Nov 15
4
Reopening sqlite3 db
Hello,
I am not sure if I trigger a bug and if so it could also be in ruby
sqlite3 backend. However, maybe I do something totally wrong.
I have the following part in puppet.conf:
[master]
storeconfigs = true
dblocation = /var/lib/puppet/state/clientconfigs.sqlite3
dbadapter = sqlite3
Now every time a client (agent in puppet speak) is run I get one more
connection to the
2010 Jun 24
3
puppet random errors
Hi,
I thing this issue has been mentioned several times in this list but I
can''t see any conclusion.
In about 10% of all runs Puppet randomly fails on some (random) File
resource either with this error:
Thu Jun 24 02:40:03 +0000 2010 //<random module>/File[<random file>]
(err): Failed to generate additional resources using ''eval_generate'':
or this error:
2007 Nov 10
2
Array of files and other questions...
Hi
I''m quite new to the art of writing puppet manifest, but the more I see,
the more I like it :-)
I''m trying to write a djbdns dnscache module.
dnscache configuration is spread in several files, for instance the ip
addresses allowed to query the cache each have a file in dnscache/root/ip/
whose filename is the address.
I''m trying to automate the creations of those
2011 Oct 25
6
Regenerating puppet master certificate
Hi all,
Is there a more elegant way to regenerate the Puppet master certificate than what''s described in the CVE-2011-3872 toolkit?
> If you can maintain a secondary shell session to the puppet master server, you can start a WEBrick master with puppet master --no-daemonize --verbose and stop it with ctrl-C.
> If you prefer to only maintain one shell session, you can start a
2011 May 20
7
PC EU feedback: exported resource syntax is too magical, hard to read
http://projects.puppetlabs.com/issues/7612
The exported resources syntax:
@@user { luke: ensure => present }
Is concise and powerful, but very difficult to read. We should
consider word-based syntax, e.g.:
export @user { luke: ensure => present }
And taking into account #7605, perhaps:
export virtual user { luke: ensure => present }
Please comment on the ticket or reply
2011 Dec 19
4
Learn from MY Mistake: "false" != false
Sharing my stoopid mistake in the hopes of saving someone else the same grief:
I had a boolean toggle that was not performing as expected.
Long story short: I had put quotes around the word "false"
class { ''foo'' : boolFlag => "false" } was coming up TRUE
To fix it, lose the quotes
class { ''foo'' : boolFlag => false }
“Sometimes I
2009 Nov 04
22
Any ideas about this error with upgrading to 0.25.1?
Hi I''m getting this error with a 0.25.1 puppetmaster and 0.25.1 node.
Nov 4 14:43:35 devcentos5 puppetd[26099]: (//network-config::base/File
[hosts]) Failed to retrieve current state of resource: Error 400 on
SERVER: Not authorized to call find on /file_metadata/network-config/
hosts/hosts.devcentos5 Could not retrieve file metadata for
puppet:///network-config/hosts/hosts.devcentos5:
2007 Nov 12
2
How to keep several puppetd in sync at the same time ?
Hi,
I''m still writing my djbdns module, I came to the following design issue
with master and slave tinydns.
Normally there is no such master and slave distinction in djbdns: all
tinydns instance are equal. Usually one instance on one host is
considered the master on, which the RR are changed, and when you need to
propagate them, you rsync the datas to the other hosts, where they will
be
2006 Apr 11
1
Postfix dovecot SASL and LDAP not working...
Hi,
I'm trying to setup a new mail server where postfix 2.3-20060405 would
use Dovecot's SASL and users located in LDAP.
It's with dovecot-1.0-beta5.
On the postfix side, I followed the SASL_README and have the following
in main.cf:
smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
smtpd_sasl_auth_enable = yes
On the dovecot side I have the following related to auth:
2010 Mar 12
23
Puppet 100% CPU usage
Hi,
I''ve been experimenting with Puppet for a few days now, and I really
like it.
But! I''m having real CPU usage problems.
Puppet is still happily eating away 100% CPU for almost an hour at a
time, with no apparent things happening.
(puppetd -tv --trace --debug, but nothing appearing in the console
during this.)
I believe the following resource is to blame:
file {
2008 Aug 04
18
puppetd daemon vs. cron
Hi,
I''m running multiple vservers and have some aspects managed via puppet. I
noticed that puppetd consumes from 20 to 60 mb RAM and the longer the process
runs, the more RAM it takes. It looks like 60MB is the top what I measured.
Having a couple of vservers (11 in my case) this can already take up to 500MB
just for puppet! I''m wondering if there''s any downside in