aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/releases.pp
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-10-19 20:16:53 +0300
committerThomas Backlund <tmb@mageia.org>2015-10-19 20:16:53 +0300
commit814d434eb7e7d8a89dac98b1a60afc10a6980617 (patch)
tree27c7b9409f7be3942ab0a5039bd9349bb4fc09dc /deployment/websites/manifests/releases.pp
parent9b5ad1460988eaa2fa11e0c5585ab7537b15c131 (diff)
downloadpuppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.tar
puppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.tar.gz
puppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.tar.bz2
puppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.tar.xz
puppet-814d434eb7e7d8a89dac98b1a60afc10a6980617.zip
lint fixes for websites
Diffstat (limited to 'deployment/websites/manifests/releases.pp')
-rw-r--r--deployment/websites/manifests/releases.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/deployment/websites/manifests/releases.pp b/deployment/websites/manifests/releases.pp
index 2412fcc5..afb923c8 100644
--- a/deployment/websites/manifests/releases.pp
+++ b/deployment/websites/manifests/releases.pp
@@ -1,7 +1,7 @@
class websites::releases {
include websites::base
$vhost = "releases.$::domain"
- $vhostdir = "$websites::base::webdatadir/$vhost"
+ $vhostdir = "$websites::base::webdatadir/${vhost}"
$git_location = "git://git.$::domain/web/releases"
apache::vhost::base { $vhost:
@@ -9,7 +9,7 @@ class websites::releases {
options => [ 'FollowSymLinks' ],
}
- apache::vhost::base { "ssl_$vhost":
+ apache::vhost::base { "ssl_${vhost}":
vhost => $vhost,
use_ssl => true,
location => $vhostdir,