summaryrefslogtreecommitdiff
path: root/manifests/vhosts.pp
blob: 9e026617a61480806914abeb976143cc8e11f627 (plain)
1
2
3
4
5
6
7
8
9
10
11
class lighttpd::vhosts {
  file{'/etc/lighttpd/vhosts.d':
    source => "puppet://$server/modules/common/empty",
    ensure => directory,
    purge => true,
    recurse => true,
    require => Package['lighttpd'],
    notify => Service['lighttpd'],
    owner => root, group => 0, mode => 0644;
  }
}