summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: f01ba24e4bc3394dcf9135621d1d7ad8c81bc2aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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.

file {
	# Module programmers can use /var/lib/puppet/modules/$modulename to save
	# module-local data, e.g. for constructing config files
	"/var/lib/puppet/modules":
		ensure => directory,
		source => "puppet://$server/common/modules/",
		ignore => '\.ignore',
		recurse => true, purge => true, force => true,
		mode => 0755, owner => root, group => 0;
}

import "defines/*.pp"