summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authordavid <david@f03ff2f1-f02d-0410-970d-b9634babeaa1>2007-06-22 08:42:40 +0000
committerdavid <david@f03ff2f1-f02d-0410-970d-b9634babeaa1>2007-06-22 08:42:40 +0000
commitdc66a2b9ca234445464fbd2b850ca83779dd7774 (patch)
treef63c6e905c5aa7b42aa4ee0d4713e3b93c84da88 /manifests
added skeleton for common module
git-svn-id: http://club.black.co.at:82/svn/manifests/trunk@51 f03ff2f1-f02d-0410-970d-b9634babeaa1
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
new file mode 100644
index 0000000..0a57299
--- /dev/null
+++ b/manifests/init.pp
@@ -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;
+}
+