summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index ef7a04a..b23d221 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -94,6 +94,9 @@ class apache::debian inherits apache::base {
file {"vhosts_dir":
ensure => '/etc/apache2/sites-enabled/',
}
+ File[default_apache_index] {
+ path => '/var/www/index.html',
+ }
}
# ubuntu is similar to debian therefor inheritng from there
class apache::ubuntu inherits apache::debian {}
@@ -102,6 +105,9 @@ class apache::openbsd inherits apache::base {
File[vhosts_dir]{
path => "$config_dir/vhosts.d/",
}
+ File[default_apache_index] {
+ path => '/var/www/htdocs/index.html',
+ }
}