From 51e43cf0233e87ca2e473a85397795cbcd1b1052 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 7 Aug 2007 11:42:33 +0000 Subject: fix "fail on no ntp_ plugins" bug git-svn-id: http://club.black.co.at:82/svn/manifests/trunk@176 f03ff2f1-f02d-0410-970d-b9634babeaa1 --- manifests/init.pp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 manifests/init.pp (limited to 'manifests/init.pp') diff --git a/manifests/init.pp b/manifests/init.pp new file mode 100644 index 0000000..dc646e7 --- /dev/null +++ b/manifests/init.pp @@ -0,0 +1,15 @@ +# munin.pp - everything a sitewide munin installation needs +# Copyright (C) 2007 David Schmitt +# See LICENSE for the full license granted to you. + +# the port is a parameter so vservers can share IP addresses and still be happy + +# Define where the individual nodes' configs are stored +$NODESDIR="/var/lib/puppet/modules/munin/nodes" + +modules_dir { [ "munin", "munin/nodes" ]: } + +import "host.pp" +import "client.pp" +import "plugin.pp" + -- cgit v1.2.3 From 9f7e01c7af791040f483376e419ed83103837b12 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 8 Aug 2007 09:15:57 +0000 Subject: fix xen0/xenu usage; fix acpi munin plugin on vservers; fix xen munin plugins git-svn-id: http://club.black.co.at:82/svn/manifests/trunk@188 f03ff2f1-f02d-0410-970d-b9634babeaa1 --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifests/init.pp') diff --git a/manifests/init.pp b/manifests/init.pp index dc646e7..966cdcb 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -7,7 +7,7 @@ # Define where the individual nodes' configs are stored $NODESDIR="/var/lib/puppet/modules/munin/nodes" -modules_dir { [ "munin", "munin/nodes" ]: } +modules_dir { [ "munin", "munin/nodes", "munin/plugins" ]: } import "host.pp" import "client.pp" -- cgit v1.2.3 From 4f6eceb8ca88ce16c2966f4e617caedb0f11d047 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 25 Sep 2007 22:04:33 +0200 Subject: fix duplicate definition of file[$NODESDIR] --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifests/init.pp') diff --git a/manifests/init.pp b/manifests/init.pp index 966cdcb..613a18f 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -7,7 +7,7 @@ # Define where the individual nodes' configs are stored $NODESDIR="/var/lib/puppet/modules/munin/nodes" -modules_dir { [ "munin", "munin/nodes", "munin/plugins" ]: } +modules_dir { [ "munin", "munin/plugins" ]: } import "host.pp" import "client.pp" -- cgit v1.2.3 From 69df2325d0ce4e6f40cac796839f7c953be75869 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 26 Sep 2007 11:58:06 +0200 Subject: munin: re-add munin/nodes modules_dir and use $NODESDIR where appropriate --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifests/init.pp') diff --git a/manifests/init.pp b/manifests/init.pp index 613a18f..966cdcb 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -7,7 +7,7 @@ # Define where the individual nodes' configs are stored $NODESDIR="/var/lib/puppet/modules/munin/nodes" -modules_dir { [ "munin", "munin/plugins" ]: } +modules_dir { [ "munin", "munin/nodes", "munin/plugins" ]: } import "host.pp" import "client.pp" -- cgit v1.2.3 From 20d4a3dca5398a65d5eefec4ba6b293efe299764 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Fri, 5 Oct 2007 16:04:33 -0400 Subject: need to assert lsbdistcodename for munin, otherwise the template --- manifests/init.pp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'manifests/init.pp') diff --git a/manifests/init.pp b/manifests/init.pp index 966cdcb..a1ea92c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -13,3 +13,5 @@ import "host.pp" import "client.pp" import "plugin.pp" +include assert_lsbdistcodename + -- cgit v1.2.3