aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/config.pp
blob: 0ff0962c4577da21160543958c06edc78165112e (plain)
1
2
3
4
5
6
define apache::config($content) {
    file { $name:
        content => $content,
        notify  => Exec['apachectl configtest'],
    }
}