summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp25
1 files changed, 24 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index a6131c1..e006126 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1 +1,24 @@
-# init
+#
+# git module
+#
+# Copyright 2008, Puzzle ITC
+# Marcel Härry haerry+puppet(at)puzzle.ch
+# Simon Josi josi+puppet(at)puzzle.ch
+#
+# This program is free software; you can redistribute
+# it and/or modify it under the terms of the GNU
+# General Public License version 3 as published by
+# the Free Software Foundation.
+#
+
+# modules_dir { \"git\": }
+
+class git {
+ include git::base
+}
+
+class git::base {
+ package{'git':
+ ensure => present,
+ }
+}