summaryrefslogtreecommitdiff
path: root/manifests/gentoo
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/gentoo')
-rw-r--r--manifests/gentoo/module.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/gentoo/module.pp b/manifests/gentoo/module.pp
index 99de0ff..1e9d03a 100644
--- a/manifests/gentoo/module.pp
+++ b/manifests/gentoo/module.pp
@@ -3,17 +3,17 @@ define apache::gentoo::module(
$source = '',
$destination = ''
){
- $modules_dir = "$apache::gentoo::config_dir/modules.d"
+ $modules_dir = "${apache::gentoo::config_dir}/modules.d"
$real_destination = $destination ? {
'' => "${modules_dir}/${name}.conf",
default => $destination,
}
$real_source = $source ? {
'' => [
- "puppet:///modules/site_apache/modules.d/${fqdn}/${name}.conf",
- "puppet:///modules/site_apache/modules.d/${apache_cluster_node}/${name}.conf",
+ "puppet:///modules/site_apache/modules.d/${::fqdn}/${name}.conf",
+ "puppet:///modules/site_apache/modules.d/${apache::cluster_node}/${name}.conf",
"puppet:///modules/site_apache/modules.d/${name}.conf",
- "puppet:///modules/apache/modules.d/${operatingsystem}/${name}.conf",
+ "puppet:///modules/apache/modules.d/${::operatingsystem}/${name}.conf",
"puppet:///modules/apache/modules.d/${name}.conf"
],
default => "puppet:///$source",