aboutsummaryrefslogtreecommitdiff
path: root/manifests/daemon.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-03-24 11:16:26 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-03-24 11:16:26 -0300
commitea61a6019db1ad3fd592489a97a746e0f67622fe (patch)
treead7e36614e37d5e18e684bf54be7557fc3977479 /manifests/daemon.pp
parent6a096ca6216d4670db4c346692bb8b7356f7e941 (diff)
downloadpuppet-git-ea61a6019db1ad3fd592489a97a746e0f67622fe.tar.gz
puppet-git-ea61a6019db1ad3fd592489a97a746e0f67622fe.tar.bz2
Autoload
Diffstat (limited to 'manifests/daemon.pp')
-rw-r--r--manifests/daemon.pp10
1 files changed, 2 insertions, 8 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp
index 546aae9..56e0430 100644
--- a/manifests/daemon.pp
+++ b/manifests/daemon.pp
@@ -1,19 +1,13 @@
-# This class configures the git-daemon service. It ensures the packages is
-# installed and a line is present in /etc/inetd.conf, which configures it.
-# It depends on a "line" definition, which can be found here:
-#
-# http://reductivelabs.com/trac/puppet/wiki/Recipes/SimpleText
-
class git::daemon (
$implementation = hiera('git::daemon::implementation', 'gitolite')
) {
case $implementation {
'gitosis': {
- include gitosis
+ include git::gitosis
}
default: {
- include gitolite
+ include git::gitolite
}
}