Displaying 20 results from an estimated 3000 matches similar to: "Puppet keeps restarting apache..."
2006 Oct 19
1
Filenames with dots in the name
Hi,
When I try to specify a file I want copied in place, like:
configfile { "/etc/init.d/puppet":
source => "config/apps/puppet/puppet"
}
and has a require on that later on:
exec { "/usr/sbin/update-rc.d puppet defaults":
require => "/etc/init.d/puppet"
}
puppetd throws an error:
err: Could not find type
2007 Apr 18
1
Overriding variables...
Hi all
I''m fighting right now with the functionality of overriding
variables. I''ve made a base node with some variables:
node base {
$country = "dk"
$dv = "sarge"
}
And I''d like to override some of them in subnode definitions:
node server01 inherits base {
$dv = "etch"
}
Is this possible, or do I have to wrap the variables in a
2007 Feb 09
2
Use of variables in defines...
Hi,
I''m banging my head against the usage of variables i defines. Fx. I
have this defined to easily create new systemusers:
define systemuser($home = $home, $shell = "/bin/bash") {
group { $name:
ensure => present
}
user { $name:
ensure => present,
gid => $name,
home => $home,
shell =>
2006 Oct 19
3
Schedules for certain weekdays...
Hi
From the documentation I can''t see if I can define the following
schedule:
I want a certain command to be run once a day, monday-friday on a
certain time of the day. Can I define that somehow...?
--
Med venlig hilsen
Juri Rischel Jensen
Fab:IT ApS
Vesterbrogade 50
DK-1620 København
Tlf: 70 202 407 / Fax: 33 313 640
www.fab-it.dk / juri@fab-it.dk
2006 Oct 17
5
Puppet tgz installs...
Hi
I''m anxious to get puppet into production, and although I''d prefer
installing puppet as a .deb package (as most of the servers in our
shop runs Debian), I think I''ll try to get some of my not-so-
important servers into my test setup by installing puppet with
the .tgz files.
Upon the first installation I realize that puppetd and puppetmasterd
is copied to
2007 Jun 07
4
Adding recipes...
Hi all
Ok, maybe it''s just me, but - how on earth do I add recipes to the
wiki...?? When I go into the list of recipes, I don''t find a "Edit
this page button". How should I add to the list?
--
Med venlig hilsen
Juri Rischel Jensen
Fab:IT ApS
Vesterbrogade 50
DK-1620 København
Tlf: 70 202 407 / Fax: 33 313 640
www.fab-it.dk / juri@fab-it.dk
2006 Oct 12
3
Defaults for package type...
Hi
I''m wondering if it''s possible to define some defaults for the
package type. What I want is that package install/updates only
happens at certain times of the day. I could do:
class shorewall {
package { "shorewall":
ensure => latest,
schedule => maintenance
}
}
for every package I want to manage. But that means I have to type
2006 Oct 26
3
Resources...
Hi,
I''d like to be able to create certain admin users on certain
machines, and when I saw the new Resources feature, I thought I could
use that. But I can''t get it to work. This is what it looks like:
<snip>
class admin {
define adminuser {
@user { $name:
ensure => present,
group => adm
}
file { "/home/$name":
ensure =>
2006 Nov 13
3
(A bit offtopic): A good starting book for ruby programming?
Hi all
Guess it''s time for me to dig a bit deeper into the ruby language.
Can you recommend some good starting books on ruby programming?
Thanks.
--
Med venlig hilsen
Juri Rischel Jensen
Fab:IT ApS
Vesterbrogade 50
DK-1620 København
Tlf: 70 202 407 / Fax: 33 313 640
www.fab-it.dk / juri@fab-it.dk
2006 Oct 14
4
How do I manage manifests most efficiently...?
Hi
As I''m more familiar with cfengine and it''s way to split updates (in
update.conf) from the actual grunt work (in cfagent.conf), I''m
wondering how to best manage puppet and my manifests with puppet...?
Should I define a puppet class that copy the puppet package (in .tgz
format) and all the manifests to the client, and then have all my
other classes depend on
2007 Jan 21
5
facts about xen domU''s...
Hi,
I''ve just finished my first attempt at making anything in ruby. It
ended up beeing a module to facter, which collects facts about the
number of domU''s and the memory, id and vcpu facts on all of the domU''s.
It''s meant to be run on the dom0, and uses the xm utility to get the
information.
The only thing I haven''t figured out, is how to
2007 Feb 23
5
Accessing definitions in a subclass...
Hi all
Shouldn''t it be possible to access definitions from a super class in
a subclass? Eg.:
class foo {
define bar (bla) {
...
}
class oof inherits foo {
bar { "rab":
bla => "something",
}
}
spews out an error: "Could not find definition bar at...
--
Med venlig hilsen
Juri Rischel Jensen
Fab:IT ApS
Vesterbrogade 50
DK-1620 København
Tlf: 70 202
2007 Jul 24
3
How to require a defined type...
Hi all,
I''m struggling with the following:
I have a defined type wrapped in a class:
class myclass {
define mytype(bla) {
file { "blabla":
....
}
exec { "blablabla":
...
}
}
}
And I access the defined type in my other class by doing this:
class otherclass {
include myclass
myclass::mytype { "alb":
...
}
# and here I want to
2008 Jan 31
3
too many open files....??
Hi all,
I''m fighting with an error message right now, that I don''t understand:
puppetmasterd[16269]: Could not write report for steinbeck.tnr.dk
at /var/lib/puppet/reports/steinbeck.tnr.dk/200801311728.yaml: Too
many open files
But an output from lsof states that there is only ~5500 files open -
not reaching any max I know of.
Anyone else experiencing this...?
--
Med
2007 Feb 10
1
Multipe file sources...
Hi,
I''m trying to use several sources to pick from in a remotefile
statement:
remotefile { "/etc/sudoers":
mode => 0440,
source => [
"config/apps/sudo/sudoers.${host}",
"config/apps/sudo/sudoers"
],
sourceselect => first
}
But it doesn''t seem to work. I get an error like this:
"File source
2006 Oct 18
1
bug in --mkusers...?
Hi all
Just discovered that running puppetmasterd --mkusers creates the user
and group puppet, but it also changes roots group to puppet...?? That
must be a bug, right...?
--
Med venlig hilsen
Juri Rischel Jensen
Fab:IT ApS
Vesterbrogade 50
DK-1620 København
Tlf: 70 202 407 / Fax: 33 313 640
www.fab-it.dk / juri@fab-it.dk
2006 Oct 19
1
A bug in the import code...?
Hi,
As RijilV pointed out in http://mail.madstop.com/pipermail/puppet-
users/2006-October/000541.html there may be af bug in the import code
of 0.20.0: I noticed the same thing about schedules as he has, and I
bumped into one more: Type defaults set in a file that gets imported
by site.pp yanks a similar error. Moving the code into site.pp
removes the error message.
--
Med venlig
2007 May 02
4
Ordering problem...
Hi all,
I''d got the impression that puppet didn''t care about ordering - ie.
the ordering of imports and includes related to calling them in the
manifest.
Lately I''ve had big trouble getting puppet to accept that I require
some resource that I _have_ defined elsewhere in the manifest. To
explain it, here is a simplified example:
site.pp:
--------
import
2007 Jan 23
5
Setting a variable to true or false, if a certain file exists...
Hi,
I need to set a variable to true or false if a certain file exists. I
need to use it in a case statement like:
case $is_installed {
false: {
exec...
file...
service...
}
true: {
package...
}
}
Is it possible...? I searched for the syntax, but I can''t find an
appropriate example...
--
Med venlig hilsen
Juri Rischel Jensen
Fab:IT ApS
Vesterbrogade 50
DK-1620
2007 Jan 31
7
Report usage...
Hi,
I''ve setup my systems to do reporting as explained in https://
reductivelabs.com/cgi-bin/puppet.cgi/wiki/ReportsAndReporting, with
tagmail defined as one of the report types - but I do not recieve any
mail at all.
I''ve configured a tagmail.conf file like this:
all: root@localhost
But the documentation mentions three options, namely sendmail,
reportfrom,