blob: a5d8fd09203535d8e0102d70ba5188296c06e5fd (
plain)
1
2
3
4
5
6
7
8
9
10
|
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'];
}
}
|