diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-02-07 19:26:25 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-02-07 19:26:25 -0200 |
commit | 5e3cff512e54ee98ca9e32d599a26730d352fc97 (patch) | |
tree | dda9d51c636b74c6f402d855a91531760cece5a0 /manifests | |
parent | 05d693e46ceb637e2e9ac8f70a905bc018905d94 (diff) | |
download | puppet-nodo-5e3cff512e54ee98ca9e32d599a26730d352fc97.tar.gz puppet-nodo-5e3cff512e54ee98ca9e32d599a26730d352fc97.tar.bz2 |
Minor fix (2)
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/websites.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/websites.pp b/manifests/websites.pp index 9d7012e..326e670 100644 --- a/manifests/websites.pp +++ b/manifests/websites.pp @@ -6,8 +6,8 @@ class websites::setup { $drupal_folder = "${apache_www_folder}/drupal" $default_vhost = $apache_server_name ? { - '': { $hostname } - default: { $apache_server_name } + '' => $hostname, + default => $apache_server_name, } # Include apache |