summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2012-06-20 12:30:25 -0400
committerMicah Anderson <micah@riseup.net>2012-06-20 12:30:25 -0400
commitd3eb5ffc325bd13e103dc72143f78c050e149d29 (patch)
tree3671b87a54a9f9e3b3cc9a361399183fe13db119 /manifests/init.pp
parent58543cc4d02f9c47bec3c0d16561d53682881843 (diff)
fix for:
err: Could not retrieve catalog from remote server: Error 400 on SERVER: Syntax error at '['; expected ']' at /etc/puppet/modules/shorewall/manifests/init.pp:39
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 31cf5e4..574ac85 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: }