summaryrefslogtreecommitdiff
path: root/manifests/client.pp
diff options
context:
space:
mode:
authorMarcel Haerry <haerry@puzzle.ch>2009-06-02 12:04:21 +0200
committerMarcel Haerry <haerry@puzzle.ch>2009-06-02 12:04:21 +0200
commit2ec7065337abc02835be322151c78da4a2410baf (patch)
treeade64070a5e30312323c3d55bd6ecb2278d2e266 /manifests/client.pp
parent8442cf9262887764cfd8d66323d79953d3176cdc (diff)
parente6b9c153680f94acb0201394325d9c2a2bdd4b0a (diff)
merged with immerda
Diffstat (limited to 'manifests/client.pp')
-rw-r--r--manifests/client.pp93
1 files changed, 71 insertions, 22 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index 4c75757..df9ab06 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -13,9 +13,9 @@ class munin::client {
}
case $operatingsystem {
+ openbsd: { include munin::client::openbsd }
darwin: { include munin::client::darwin }
- debian: { include munin::client::debian }
- ubuntu: { include munin::client::ubuntu }
+ debian,ubuntu: { include munin::client::debian }
centos: { include munin::client::centos }
gentoo: { include munin::client::gentoo }
default: { include munin::client::base }
@@ -61,34 +61,73 @@ define munin::register_snmp(
}
class munin::client::base {
- package { "munin-node": ensure => installed }
- service { "munin-node":
- ensure => running,
+ service { 'munin-node':
+ ensure => running,
enable => true,
hasstatus => true,
hasrestart => true,
- require => Package[munin-node],
- }
- file {"/etc/munin/":
- ensure => directory,
- mode => 0755, owner => root, group => 0;
+ }
+ file {'/etc/munin/':
+ ensure => directory,
+ mode => 0755, owner => root, group => 0;
}
$real_munin_allow = $munin_allow ? {
'' => '127.0.0.1',
default => $munin_allow
}
- file {"/etc/munin/munin-node.conf":
- content => template("munin/munin-node.conf.$operatingsystem"),
- # this has to be installed before the package, so the postinst can
- # boot the munin-node without failure!
- before => Package["munin-node"],
- notify => Service['munin-node'],
- mode => 0644, owner => root, group => 0,
+ file {'/etc/munin/munin-node.conf':
+ content => template("munin/munin-node.conf.$operatingsystem"),
+ notify => Service['munin-node'],
+ mode => 0644, owner => root, group => 0,
}
munin::register { $fqdn: }
include munin::plugins::base
}
+# currently we install munin on openbsd by targz
+# :(
+class munin::client::openbsd inherits munin::client::base {
+ file{'/usr/src/munin_openbsd.tar.gz':
+ source => "puppet://$server/munin/openbsd/package/munin_openbsd.tar.gz",
+ owner => root, group => 0, mode => 0600;
+ }
+ package{ [ 'p5-Compress-Zlib', 'p5-Crypt-SSLeay', 'p5-HTML-Parser',
+ 'p5-HTML-Tagset', 'p5-HTTP-GHTTP', 'p5-LWP-UserAgent-Determined',
+ 'p5-Net-SSLeay', 'p5-Net-Server', 'p5-URI', 'p5-libwww', 'pcre', 'curl' ]:
+ ensure => installed,
+ before => File['/var/run/munin'],
+ }
+ exec{'extract_openbsd':
+ command => 'cd /;tar xzf /usr/src/munin_openbsd.tar.gz',
+ unless => 'test -d /opt/munin',
+ require => File['/usr/src/munin_openbsd.tar.gz'],
+ }
+ file{[ '/var/run/munin', '/var/log/munin' ]:
+ ensure => directory,
+ require => Exec['extract_openbsd'],
+ owner => root, group => 0, mode => 0755;
+ }
+ openbsd::add_to_rc_local{'munin-node':
+ binary => '/opt/munin/sbin/munin-node',
+ require => File['/var/run/munin'],
+ }
+ Service['munin-node']{
+ restart => '/bin/kill -HUP `/bin/cat /var/run/munin/munin-node.pid`',
+ stop => '/bin/kill `/bin/cat /var/run/munin/munin-node.pid`',
+ start => '/opt/munin/sbin/munin-node',
+ hasstatus => false,
+ hasrestart => false,
+ require => [ File['/var/run/munin'], File['/var/log/munin'] ],
+ }
+
+ cron{'clean_munin_logfile':
+ command => 'rm /var/log/munin/munin-node.log; kill -HUP `cat /var/run/munin/munin-node.pid`',
+ minute => 0,
+ hour => 2,
+ weekday => 0,
+ }
+}
+
class munin::client::darwin {
file { "/usr/share/snmp/snmpd.conf":
mode => 744,
@@ -111,7 +150,19 @@ class munin::client::darwin {
munin::register_snmp { $fqdn: }
}
-class munin::client::debian inherits munin::client::base {
+class munin::client::package inherits munin::client::base {
+ package { 'munin-node': ensure => installed }
+ Service['munin-node']{
+ require => Package[munin-node],
+ }
+ File['/etc/munin/munin-node.conf']{
+ # this has to be installed before the package, so the postinst can
+ # boot the munin-node without failure!
+ before => Package['munin-node'],
+ }
+}
+
+class munin::client::debian inherits munin::client::package {
# the plugin will need that
package { "iproute": ensure => installed }
@@ -127,9 +178,7 @@ class munin::client::debian inherits munin::client::base {
include munin::plugins::debian
}
-class munin::client::ubuntu inherits munin::client::debian {}
-
-class munin::client::gentoo inherits munin::client::base {
+class munin::client::gentoo inherits munin::client::package {
Package['munin-node'] {
name => 'munin',
category => 'net-analyzer',
@@ -139,6 +188,6 @@ class munin::client::gentoo inherits munin::client::base {
include munin::plugins::gentoo
}
-class munin::client::centos inherits munin::client::base {
+class munin::client::centos inherits munin::client::package {
include munin::plugins::centos
}