diff options
author | Micah <micah@leap.se> | 2016-01-19 16:56:52 -0500 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-01-19 17:50:10 -0500 |
commit | fb2d35ae441bce0496e274b2339589f5b8f84252 (patch) | |
tree | 417323be46eb55c75ff3084774d18d280c66ab36 | |
parent | 935a5e884dc468da2b9ec724638f1c55a8f74e85 (diff) |
Make the reject parameter an array to fix the following (#7822):
failed to parse template tor/torrc.exit_policy.erb, undefined method
`each' for "*:*":String
Change-Id: I2b7b444187376dbc2f3cc5095391ae54bf8321b3
-rw-r--r-- | puppet/modules/site_tor/manifests/disable_exit.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/site_tor/manifests/disable_exit.pp b/puppet/modules/site_tor/manifests/disable_exit.pp index 73016646..078f80ae 100644 --- a/puppet/modules/site_tor/manifests/disable_exit.pp +++ b/puppet/modules/site_tor/manifests/disable_exit.pp @@ -1,7 +1,7 @@ class site_tor::disable_exit { tor::daemon::exit_policy { 'no_exit_at_all': - reject => '*:*'; + reject => [ '*:*' ]; } } |