aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bcd/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/bcd/manifests/init.pp')
-rw-r--r--modules/bcd/manifests/init.pp23
1 files changed, 0 insertions, 23 deletions
diff --git a/modules/bcd/manifests/init.pp b/modules/bcd/manifests/init.pp
index b4c7a03b..2dfd88df 100644
--- a/modules/bcd/manifests/init.pp
+++ b/modules/bcd/manifests/init.pp
@@ -41,27 +41,4 @@ class bcd {
}
- class web inherits base {
- apache::vhost_base { "bcd.$domain":
- location => "$bcd_home/public_html",
- content => template('bcd/vhost_bcd.conf'),
- }
- file {"htaccess":
- path => "$bcd_home/public_html/.htaccess",
- ensure => present,
- owner => bcd,
- group => bcd,
- mode => 755,
- content => template("bcd/.htaccess")
- }
- file {"htpasswd":
- path => "$bcd_home/public_html/.htpasswd",
- ensure => present,
- owner => bcd,
- group => bcd,
- mode => 755,
- content => template("bcd/.htpasswd")
- }
- }
-
}