From 50cb0e9b376e8efdbf0e581fba5da5b181097e3c Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sat, 17 Mar 2012 16:53:34 +0000 Subject: scoping and style fix, found by puppet-lint --- deployment/websites/manifests/releases.pp | 34 +++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'deployment/websites/manifests/releases.pp') diff --git a/deployment/websites/manifests/releases.pp b/deployment/websites/manifests/releases.pp index 4cb88d67..26d14bcf 100644 --- a/deployment/websites/manifests/releases.pp +++ b/deployment/websites/manifests/releases.pp @@ -1,22 +1,22 @@ -class websites { - class releases inherits base { - $vhostdir = "$webdatadir/releases.$domain" - $svn_location = "svn://svn.$domain/svn/web/releases/" +class websites::releases { + include websites::base + $vhost = "releases.$::domain" + $vhostdir = "$websites::base::webdatadir/$vhost" + $svn_location = "svn://svn.$::domain/svn/web/releases/" - apache::vhost_base { "releases.$domain": - location => $vhostdir, - options => [ "FollowSymLinks" ], - } + apache::vhost_base { $vhost: + location => $vhostdir, + options => [ 'FollowSymLinks' ], + } - apache::vhost_base { "ssl_releases.$domain": - vhost => "releases.$domain", - use_ssl => true, - location => $vhostdir, - options => [ "FollowSymLinks" ], - } + apache::vhost_base { "ssl_$vhost": + vhost => $vhost, + use_ssl => true, + location => $vhostdir, + options => [ 'FollowSymLinks' ], + } - subversion::snapshot { "$vhostdir": - source => $svn_location, - } + subversion::snapshot { $vhostdir: + source => $svn_location, } } -- cgit v1.2.1