diff options
author | Micah Anderson <micah@riseup.net> | 2012-06-20 13:47:40 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-06-20 13:47:40 -0400 |
commit | c3452c911c5dba8b53b558169774d83c3e1908e4 (patch) | |
tree | 71b26bb74e714133b72b58ba44feb5534b1c6da1 /manifests | |
parent | 475d93888ff853d48b6f4cdcc894415026553abe (diff) | |
download | puppet-shorewall-c3452c911c5dba8b53b558169774d83c3e1908e4.tar.gz puppet-shorewall-c3452c911c5dba8b53b558169774d83c3e1908e4.tar.bz2 |
Revert "fix for:"
This reverts commit d3eb5ffc325bd13e103dc72143f78c050e149d29.
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 656f5a1..dd28767 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -36,7 +36,7 @@ class shorewall( case $non_torified_users { '': { $non_torified_users = [] } } - $real_non_torified_users = uniq_flatten($tor_user, $non_torified_users) + $real_non_torified_users = uniq_flatten([ $tor_user, $non_torified_users ]) # See http://www.shorewall.net/3.0/Documentation.htm#Zones shorewall::managed_file{ zones: } |