added skeleton for common module

git-svn-id: http://club.black.co.at:82/svn/manifests/trunk@51 f03ff2f1-f02d-0410-970d-b9634babeaa1
This commit is contained in:
david 2007-06-22 08:42:40 +00:00
commit dc66a2b9ca

12
manifests/init.pp Normal file
View file

@ -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;
}