diff options
author | Micah Anderson <micah@riseup.net> | 2012-06-20 12:35:12 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-06-20 12:35:12 -0400 |
commit | f072fb5d41026d8b4b5125f8d249b687225cb108 (patch) | |
tree | de7ba0f4579d20b590be67123d6fa2ed1ea9184b /manifests | |
parent | 6cb88973f53aa7d92414797dd21952c1c1d5da98 (diff) | |
download | puppet-shorewall-f072fb5d41026d8b4b5125f8d249b687225cb108.tar.gz puppet-shorewall-f072fb5d41026d8b4b5125f8d249b687225cb108.tar.bz2 |
fix for: Syntax error at [; expected ] at /etc/puppet/modules/shorewall/manifests/init.pp:39
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 e5456d0..3921ade 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -37,7 +37,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) file {"/var/lib/puppet/modules/shorewall": ensure => directory, |