summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index cc6351c..e1a9625 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -29,4 +29,13 @@ class lighttpd::base {
notify => Service['lighttpd'],
owner => root, group => 0, mode => 0644;
}
+
+ # ToDo: put that in a common module to share with apache
+ file { 'default_lighttpd_index':
+ path => '/srv/www/lighttpd/index.html',
+ ensure => file,
+ content => template('lighttpd/default/default_index.erb'),
+ owner => root, group => 0, mode => 0644;
+ }
+
}