summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/debian.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp
index 0b67924..a5d8fd0 100644
--- a/manifests/debian.pp
+++ b/manifests/debian.pp
@@ -1,8 +1,10 @@
class lighttpd::debian inherits lighttpd::base {
file{
'/var/www/lighttpd':
- ensure => directory;
+ ensure => directory,
+ require => Package['lighttpd'];
'/var/www/index.lighttpd.html':
ensure => absent,
+ require => Package['lighttpd'];
}
}