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