aboutsummaryrefslogtreecommitdiff
path: root/manifests/master.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/master.pp')
-rw-r--r--manifests/master.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/master.pp b/manifests/master.pp
index 1285f57..819ce43 100644
--- a/manifests/master.pp
+++ b/manifests/master.pp
@@ -20,7 +20,7 @@ class nodo::master {
host { "puppet":
ensure => present,
ip => "127.0.0.1",
- alias => ["puppet.$domain"],
+ alias => ["puppet.${::domain}"],
}
} else {
class { 'puppet::master':
@@ -47,7 +47,7 @@ class nodo::master {
# Update master's puppet.conf if you change here
database::instance { "puppet":
- password => "$db_password",
+ password => "${db_password}",
}
# Used for trac dependency graphs
@@ -56,5 +56,5 @@ class nodo::master {
}
# Check domain registration
- domain::check { $domain: }
+ domain::check { $::domain: }
}