summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: be94ab88157145fe2a13d653a5c30f832313c959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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:///common/modules/",
		ignore => ".ignore",
		recurse => true, purge => true, force => true,
		mode => 0755, owner => root, group => 0;
}

import "defines/*.pp"
import "classes/*.pp"