aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/config.pp
blob: 90f0cba650edc25b7a6315d4207cb567bd37f7c9 (plain)
1
2
3
4
5
6
7
define apache::config($content) {
    file { $name:
        content => $content,
        require => Package['apache-conf'],
        notify  => Exec['service httpd configtest'],
    }
}