diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-10-19 19:55:02 +0300 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-10-19 19:55:02 +0300 |
commit | 9b5ad1460988eaa2fa11e0c5585ab7537b15c131 (patch) | |
tree | 27c9d3cc62b47a62432f63f547aa01bf7879f976 /deployment | |
parent | 509ff341f7be0cb8ad5caf4525fab090c0c07a2f (diff) | |
download | puppet-9b5ad1460988eaa2fa11e0c5585ab7537b15c131.tar puppet-9b5ad1460988eaa2fa11e0c5585ab7537b15c131.tar.gz puppet-9b5ad1460988eaa2fa11e0c5585ab7537b15c131.tar.bz2 puppet-9b5ad1460988eaa2fa11e0c5585ab7537b15c131.tar.xz puppet-9b5ad1460988eaa2fa11e0c5585ab7537b15c131.zip |
lint fixes for tld_redirections
Diffstat (limited to 'deployment')
-rw-r--r-- | deployment/tld_redirections/manifests/init.pp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/deployment/tld_redirections/manifests/init.pp b/deployment/tld_redirections/manifests/init.pp index 92215e86..6743f11b 100644 --- a/deployment/tld_redirections/manifests/init.pp +++ b/deployment/tld_redirections/manifests/init.pp @@ -1,20 +1,20 @@ class tld_redirections { define domain { - dns::zone { "mageia.$name": } + dns::zone { "mageia.${name}": } } define redirection($managed_dns = false) { if ($managed_dns) { - @@tld_redirections::domain { $name: } + @@tld_redirections::domain { $name: } } - apache::vhost_redirect { "mageia.$name": - url => "http://www.mageia.org/?fromtld=$name" + apache::vhost_redirect { "mageia.${name}": + url => "http://www.mageia.org/?fromtld=${name}" } - apache::vhost_redirect { "www.mageia.$name": - url => "http://www.mageia.org/?fromtld=$name" + apache::vhost_redirect { "www.mageia.${name}": + url => "http://www.mageia.org/?fromtld=${name}" } } |