diff options
-rw-r--r-- | modules/bcd/manifests/web.pp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/bcd/manifests/web.pp b/modules/bcd/manifests/web.pp index 128af5ea..d33506d5 100644 --- a/modules/bcd/manifests/web.pp +++ b/modules/bcd/manifests/web.pp @@ -1,15 +1,15 @@ class bcd::web { - include bcd::base + include bcd::base $location = "$bcd::home/public_html" apache::vhost_base { "bcd.$::domain": - location => $location, - content => template('bcd/vhost_bcd.conf'), - } + location => $location, + content => template('bcd/vhost_bcd.conf'), + } - # not sure if that's useful, since the file is public and trivially + # not sure if that's useful, since the file is public and trivially # bruteforced - file { "$bcd::home/htpasswd": + file { "$bcd::home/htpasswd": content => template('bcd/htpasswd') } } |