summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: d2635094b8f3b257dbcb1a56c3afc00b8ee87706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class lighttpd::debian inherits lighttpd::base {
  file{
    '/var/www/lighttpd':
      ensure => directory,
      require => Package['lighttpd'];
    '/var/www/index.lighttpd.html':
      ensure => absent,
      require => Package['lighttpd'];
  }

  Service['lighttpd']{
    hasstatus => false,
  }
}