]> gitweb.fluxo.info Git - puppet-common.git/commitdiff
added skeleton for common module
authordavid <david@f03ff2f1-f02d-0410-970d-b9634babeaa1>
Fri, 22 Jun 2007 08:42:40 +0000 (08:42 +0000)
committerdavid <david@f03ff2f1-f02d-0410-970d-b9634babeaa1>
Fri, 22 Jun 2007 08:42:40 +0000 (08:42 +0000)
git-svn-id: http://club.black.co.at:82/svn/manifests/trunk@51 f03ff2f1-f02d-0410-970d-b9634babeaa1

manifests/init.pp [new file with mode: 0644]

diff --git a/manifests/init.pp b/manifests/init.pp
new file mode 100644 (file)
index 0000000..0a57299
--- /dev/null
@@ -0,0 +1,12 @@
+# common/manifests/init.pp - Define common infrastructure for modules
+# Copyright (C) 2007 David Schmitt <david@schmitt.edv-bus.at>
+# See LICENSE for the full license granted to you.
+
+# Module programmers can use /var/lib/puppet/modules/$modulename to 
+# save module-local data, e.g. for constructing config files
+file {
+       "/var/lib/puppet/modules":
+               ensure => directory,
+               mode => 0755, owner => root, group => root;
+}
+