summaryrefslogtreecommitdiff
path: root/manifests/centos.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-12-27 15:54:45 +0000
committermh <mh@immerda.ch>2008-12-27 15:54:45 +0000
commit26fb5d12d5da80a8057aeaecaa65e266964d8478 (patch)
treec952686107449f61d5905f3f1c934b829c45c66c /manifests/centos.pp
parent81d2c0ba518dca2861e685edd7af657a0726340d (diff)
factored classes out in their own files
Diffstat (limited to 'manifests/centos.pp')
-rw-r--r--manifests/centos.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/centos.pp b/manifests/centos.pp
new file mode 100644
index 0000000..fd121cd
--- /dev/null
+++ b/manifests/centos.pp
@@ -0,0 +1,10 @@
+class puppet::centos inherits puppet::linux {
+ file{'/etc/sysconfig/puppet':
+ source => [ "puppet://$server/files/puppet/sysconfig/${fqdn}/puppet",
+ "puppet://$server/files/puppet/sysconfig/${domain}/puppet",
+ "puppet://$server/files/puppet/sysconfig/puppet",
+ "puppet://$server/puppet/sysconfig/puppet" ],
+ notify => Service[puppet],
+ owner => root, group => 0, mode => 0644;
+ }
+}