summaryrefslogtreecommitdiff
path: root/manifests/daemon/centos.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2011-04-01 13:29:43 -0400
committerMicah Anderson <micah@riseup.net>2011-04-01 13:29:43 -0400
commitf2846099d1e24589600d6a3a346ab92e5c65f843 (patch)
tree9bc6b1ba9502c3bd42b64a4834ef91dc7f7fce5a /manifests/daemon/centos.pp
parent74ccc33ff4f0158e80db4dbc64d4edc490acb26c (diff)
parent5c746aa9a4ee5748cbaa6812a508e3dd878b621c (diff)
Merge remote-tracking branch 'lavamind/master'
Conflicts: manifests/daemon.pp manifests/daemon/disable.pp manifests/daemon/vhosts.pp
Diffstat (limited to 'manifests/daemon/centos.pp')
-rw-r--r--manifests/daemon/centos.pp19
1 files changed, 19 insertions, 0 deletions
diff --git a/manifests/daemon/centos.pp b/manifests/daemon/centos.pp
new file mode 100644
index 0000000..270685a
--- /dev/null
+++ b/manifests/daemon/centos.pp
@@ -0,0 +1,19 @@
+class git::daemon::centos inherits git::daemon::base {
+
+ package { 'git-daemon':
+ ensure => installed,
+ require => Package['git'],
+ alias => 'git-daemon',
+ }
+
+ File['git-daemon_initscript'] {
+ path => '/etc/init.d/git-daemon',
+ require +> Package['git-daemon'],
+ }
+
+ File['git-daemon_config'] {
+ path => '/etc/init.d/git-daemon',
+ require +> Package['git-daemon'],
+ }
+
+}