diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-02-07 16:52:27 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-02-07 16:52:27 -0200 |
commit | 5ade2be9470c0e4292979535a217c3c477d93237 (patch) | |
tree | 5d505c9ad698b96df094544294087e847ab5b11e /manifests | |
parent | 13859194594db5744696b5ce03847584f8065285 (diff) | |
download | puppet-apache-5ade2be9470c0e4292979535a217c3c477d93237.tar.gz puppet-apache-5ade2be9470c0e4292979535a217c3c477d93237.tar.bz2 |
Using just $hostname for $apache_server_name
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 5ad7b16..f21a02d 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -47,7 +47,7 @@ class apache { } case $apache_server_name { - '': { $apache_server_name = $fqdn } + '': { $apache_server_name = $hostname } } package { "apache": |