summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 577b0c67a4c2be7cc3f70567f5fd2537116b4bf0 (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://$servername/common/modules/",
		recurse => true, purge => true, force => true,
		mode => 0755, owner => root, group => root;
}

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