blob: 8b0389be754ff52d53f07a4d758b2a8089fadb7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# deploy apache configuration file (global)
# wrapper for apache::config::file
define apache::config::global(
$ensure = present,
$target = false,
$source = 'absent',
$content = 'absent',
$destination = 'absent'
){
apache::config::file { "${name}":
ensure => $ensure,
target => $target,
type => 'global',
source => $source,
content => $content,
destination => $destination,
}
}
|