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