summaryrefslogtreecommitdiff
path: root/manifests/centos.pp
diff options
context:
space:
mode:
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;
+ }
+}