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