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