Displaying 20 results from an estimated 29 matches for "daysofwonder".
2007 Nov 23
7
Modules design patterns ?
...y parameters. But I''m sure there are
drawbacks...
So now, the question is, if other more experimented people are writing
modules in the first way, what am I missing with the second form?
What module design patterns are considered best pratice?
Thanks,
--
Brice Figureau <brice+puppet@daysofwonder.com>
Days of Wonder, http://www.daysofwonder.com/
2006 Apr 11
1
Postfix dovecot SASL and LDAP not working...
...pop or imap authentification with LDAP works fine:
Apr 11 17:43:08 localhost dovecot: auth(default): client in: AUTH^I1^IPLAIN^Iservice=IMAP^Isecured^Ilip=127.0.0.1^Irip=127.0.0.1^Iresp=AGJyaWNlAHRvdG8=
Apr 11 17:43:08 localhost dovecot: auth(default): ldap(raymond,127.0.0.1): base=ou=people, dc=daysofwonder, dc=com scope=subtree filter=(&(objectClass=CourierMailAccount)(uid=raymond)) fields=uid,userPassword,homeDirectory,uidNumber,gidNumber,mailbox
Apr 11 17:43:08 localhost dovecot: auth(default): ldap(raymond,127.0.0.1): uid(user)=raymond userPassword(password)={PLAIN}toto homeDirectory(userdb_ho...
2007 Nov 21
6
mod_proxy_balancer under heavy load.
So I''m still working on a ''perfect'' setup so I can document it on the wiki,
and will submit some puppet patches against 0.23.2 next week, but here''s
what I''ve done that has made a big difference to stability here.
in puppetmasterd at line 261, I''ve modified the Mongrel instantiation from:
server = Mongrel::HttpServer.new(addr,
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
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
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
2006 Aug 18
1
OT: best way to move maildirs to another host ?
...e. If I strictly move
the files, I can be sure that the moved files won't have the same inodes
number as what is in the name.
Should I care ?
Or should I use something different than scp/rsync to perform the
migration ?
Thanks for your answers,
Regards,
--
Brice Figureau <brice+dovecot at daysofwonder.com>
2007 Dec 16
2
mongrel and reverse proxy security
Hi,
It seems that webrick cannot handle too much client and that luke is
making mongrel the ''default'' server to use so i wanted to switch to
mongrel. Then i read that i cannot use directly mongrel like webrick
because it does not speak SSL.
So my issue is : how to be sure things stay secure in the way that the
proxy should be the one speaking ssl and making client ssl
2008 Nov 19
1
Builtin Nagios types
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
I''me using nagios builtin types and I''m very surprised that the
parameter *name* is not available for type nagios_host ?!?
This parameter is required to use inheritance
(http://nagios.sourceforge.net/docs/3_0/objectinheritance.html) and I
don''t understand why it is not included in all nagios types ?
Maybe someone has
2006 Mar 14
1
Shared maildir through namespace help...
...rectory
even if it is in a public namespace.
Now, the question, is: is that setup could work only with virtual users
setup with a static uid/gid ?
Is there a mean to implement what I want ?
Does using symlinks instead of the namespace could work ?
Regards,
--
Brice Figureau <brice+dovecot at daysofwonder.com>
2007 Nov 13
7
Exported resources & exec ?
...rts them.
On slaves I use the collected public key to build an authorized_keys (with the exec "add-keys").
Unfortunately the files in /var/lib/puppet/modules/djbdns/masters.d/ are
always empty on the slaves.
Any ideas on how I could solve this issue ?
--
Brice Figureau <brice+puppet@daysofwonder.com>
2009 Mar 05
2
Visualizing puppet circular dependencies
I recently got a scary-looking circular dependency as a puppet error,
and it took some thought to decipher it.
Long story short, I fed it to graphviz, and the graph made it obvious
where the problem was. Thought I''d share, in case others are having
the same trouble. Code''s at http://gist.github.com/74566, and also
pasted below for convenience.
-- Philip
# Make sense of
2007 Nov 12
2
How to keep several puppetd in sync at the same time ?
...e between two synchronize run. (Is there any
documentation somewhere that explains the synchronization process?)
Can you think about a more puppet-like way of doing things which
guarantees each puppetd can see the same data file at about the same
time ?
Thanks,
--
Brice Figureau <brice+puppet@daysofwonder.com>
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 {
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:
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
2007 Dec 11
2
Ext3 Performance Tuning - the journal
Hello,
I have some performance problems in a file server system. It is used
as Samba and NFS file server. I have some ideas what might cause the
problems, and I want to try step by step. First I have to learn more
about these areas.
First I have some questions about tuning/sizing the ext3 journal.
The most extensive list I found on ext3 performance tuning is
2008 Mar 22
6
pass Resources to a define or unsetting notify
Hi
i''m trying to pass Resources (single or in an array) to a resource, so I
can pass this to a notify or require. However I have some problems, when
no resource should be passed. Maybe somebody can help me? thanks
define gentoo::etcconfd (
$require = '''',
$notify = ''''
){
file { "/etc/conf.d/${name}":
owner =>
2012 Apr 09
14
Taking github noise away from puppet-dev list
Since our move to github for pull requests and patches, the usefulness
of puppet-dev has declined significantly. puppet-dev used to be a
great list for development discussion of puppet and the ecosystem
around it. With the information and pull request emails from github,
unless everybody has finely-tuned their email clients, the puppet-dev
list has turned into mostly noise.
We have a goal to
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: