From: mh Date: Sun, 17 Oct 2010 13:53:58 +0000 (+0200) Subject: do the vhosts dir at the right place X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=657cbbaee9aef1ef536d1cfa4c22d99653facd42;p=puppet-lighttpd.git do the vhosts dir at the right place --- diff --git a/manifests/vhosts.pp b/manifests/vhosts.pp index 72cbcf5..f84238c 100644 --- a/manifests/vhosts.pp +++ b/manifests/vhosts.pp @@ -8,4 +8,10 @@ class lighttpd::vhosts { notify => Service['lighttpd'], owner => root, group => 0, mode => 0644; } + + file{'/var/www/vhosts': + ensure => directory, + require => Package['lighttpd'], + owner => root, group => 0, mode => 0644; + } }