diff options
author | Dan Fandrich <danf@mageia.org> | 2024-04-19 16:45:47 -0700 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-04-19 16:46:32 -0700 |
commit | 00866726fad7b638401cf82d94c95e08ffc2edb8 (patch) | |
tree | 2357236f89d3500d4c0fde1260d4dcfe3129aca7 /modules/buildsystem | |
parent | 02f1f8512a976629df335c2429d93a0cc84b57d3 (diff) | |
download | puppet-00866726fad7b638401cf82d94c95e08ffc2edb8.tar puppet-00866726fad7b638401cf82d94c95e08ffc2edb8.tar.gz puppet-00866726fad7b638401cf82d94c95e08ffc2edb8.tar.bz2 puppet-00866726fad7b638401cf82d94c95e08ffc2edb8.tar.xz puppet-00866726fad7b638401cf82d94c95e08ffc2edb8.zip |
Add $ on variable reference
Accidentally dropped in 02f1f851
Diffstat (limited to 'modules/buildsystem')
-rw-r--r-- | modules/buildsystem/manifests/binrepo.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/buildsystem/manifests/binrepo.pp b/modules/buildsystem/manifests/binrepo.pp index d87c41d9..f2f529c0 100644 --- a/modules/buildsystem/manifests/binrepo.pp +++ b/modules/buildsystem/manifests/binrepo.pp @@ -35,7 +35,7 @@ class buildsystem::binrepo { apache::vhost::base { "ssl_${buildsystem::var::binrepo::hostname}": use_ssl => true, - vhost => buildsystem::var::binrepo::hostname, + vhost => $buildsystem::var::binrepo::hostname, location => $buildsystem::var::binrepo::repodir, content => template('buildsystem/binrepo/vhost_binrepo.conf'), } |