diff options
author | mh <mh@immerda.ch> | 2012-02-16 16:58:09 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2012-02-16 16:58:09 +0100 |
commit | 2c86670a9233ee62d16b16730218994a1fe7eb9b (patch) | |
tree | 858e1a576863678f675b6be0f5f45b9b77f01d04 /manifests/satellite.pp | |
parent | 77578b93bd98bf0bf9cf69e4fa8da75dcf9c236d (diff) | |
download | puppet-postfix-2c86670a9233ee62d16b16730218994a1fe7eb9b.tar.gz puppet-postfix-2c86670a9233ee62d16b16730218994a1fe7eb9b.tar.bz2 |
Use proper variable scope
Facts should be addressed with $::fqdn and so on.
Diffstat (limited to 'manifests/satellite.pp')
-rw-r--r-- | manifests/satellite.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/satellite.pp b/manifests/satellite.pp index cb92a9f..99904dd 100644 --- a/manifests/satellite.pp +++ b/manifests/satellite.pp @@ -25,7 +25,7 @@ class postfix::satellite { # If $valid_fqdn exists, use it to override $fqdn case $valid_fqdn { - "": { $valid_fqdn = $fqdn } + "": { $valid_fqdn = $::fqdn } default: { $fqdn = "${valid_fqdn}" } } |