diff options
| -rw-r--r-- | manifests/vhosts.pp | 6 | 
1 files changed, 6 insertions, 0 deletions
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; +  }  }  | 
