summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 069ff4cafdd35eb158aadd90025818a3203bef96 (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://$server/common/modules/",
		ignore => '\.ignore',
		recurse => true, purge => true, force => true,
		mode => 0755, owner => root, group => 0;
}

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