X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/741593ee2bf203c9261f604d094e3d8e621698a8..2bfb0ef07fb64314f5c4ded641a8c280df9c1d0b:/cookbooks/fail2ban/resources/filter.rb diff --git a/cookbooks/fail2ban/resources/filter.rb b/cookbooks/fail2ban/resources/filter.rb index 5e10241a4..13a778295 100644 --- a/cookbooks/fail2ban/resources/filter.rb +++ b/cookbooks/fail2ban/resources/filter.rb @@ -17,6 +17,8 @@ # limitations under the License. # +unified_mode true + default_action :create property :filter, :kind_of => String, :name_property => true @@ -30,7 +32,7 @@ action :create do source new_resource.source owner "root" group "root" - mode 0o644 + mode "644" end else template "/etc/fail2ban/filter.d/#{new_resource.filter}.conf" do @@ -38,7 +40,7 @@ action :create do source "filter.erb" owner "root" group "root" - mode 0o644 + mode "644" variables :failregex => new_resource.failregex, :ignoreregex => new_resource.ignoreregex end