summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-11-07 10:28:28 +0000
committermh <mh@immerda.ch>2008-11-07 10:28:28 +0000
commit1355e6d8c2c9d3a0b1be9266f2dc5c7eadc06827 (patch)
tree4b1fe7ad51a1c002c8579cd897dfcf955e05fc1c
parent46d8d31a4232870576441fb932b484830e37a1d1 (diff)
merged module from puzzle
-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,
+ }
+}