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:
commit
dc66a2b9ca
1 changed files with 12 additions and 0 deletions
12
manifests/init.pp
Normal file
12
manifests/init.pp
Normal 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;
|
||||
}
|
||||
|
Loading…
Reference in a new issue