]> gitweb.fluxo.info Git - puppet-lighttpd.git/commitdiff
add dependency
authormh <mh@immerda.ch>
Sat, 16 Oct 2010 15:36:23 +0000 (17:36 +0200)
committermh <mh@immerda.ch>
Sat, 16 Oct 2010 15:36:23 +0000 (17:36 +0200)
manifests/debian.pp

index 0b679247aed9cb6e89ec5d8d17a119dbbc1e01d2..a5d8fd09203535d8e0102d70ba5188296c06e5fd 100644 (file)
@@ -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'];
   }
 }