summaryrefslogtreecommitdiff
path: root/manifests/client/darwin.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/client/darwin.pp')
-rw-r--r--manifests/client/darwin.pp22
1 files changed, 0 insertions, 22 deletions
diff --git a/manifests/client/darwin.pp b/manifests/client/darwin.pp
deleted file mode 100644
index 264263d..0000000
--- a/manifests/client/darwin.pp
+++ /dev/null
@@ -1,22 +0,0 @@
-class munin::client::darwin {
- file { "/usr/share/snmp/snmpd.conf":
- mode => 744,
- content => template("munin/darwin_snmpd.conf.erb"),
- group => 0,
- owner => root,
- }
- line{"startsnmpdno":
- file => "/etc/hostconfig",
- line => "SNMPSERVER=-NO-",
- ensure => 'absent',
- }
- line { "startsnmpdyes":
- file => "/etc/hostconfig",
- line => "SNMPSERVER=-YES-",
- notify => Exec["/sbin/SystemStarter start SNMP"],
- }
- exec{"/sbin/SystemStarter start SNMP":
- noop => false,
- }
- munin::register::snmp { $::fqdn: }
-}