summaryrefslogtreecommitdiff
path: root/manifests/mod_macro.pp
blob: acee2808e9832236695138f046f0359b47164308 (plain)
1
2
3
4
5
6
7
8
class apache::mod_macro {
    include apache
    package{mod_macro:
        ensure => installed,
        require => Package['apache'],
        notify => Service['apache'],
    }
}