summaryrefslogtreecommitdiff
path: root/manifests/config/include.pp
blob: b58073fc582317dd1b2dbeb014e7b3d9bb0316ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# deploy apache configuration file (includes for vhosts)
define apache::config::include(
    $ensure = present,
    $source = 'absent',
    $content = 'absent',
    $destination = 'absent'
){
    apache::config::file { "${name}":
        ensure => $ensure,
        type => 'include',
        source => $source,
        content => $content,
        destination => $destination,
    }
}