X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/19aeb7bfffb852ab8be005c004b1ef8e555a5b77..e5f294d3dc676675b2803915571c28337468c3b3:/cookbooks/fail2ban/resources/filter.rb diff --git a/cookbooks/fail2ban/resources/filter.rb b/cookbooks/fail2ban/resources/filter.rb index b28e8f6c7..940716d26 100644 --- a/cookbooks/fail2ban/resources/filter.rb +++ b/cookbooks/fail2ban/resources/filter.rb @@ -17,13 +17,39 @@ # limitations under the License. # -actions :create, :delete default_action :create -attribute :name, :kind_of => String, :name_attribute => true -attribute :source, :kind_of => String -attribute :failregex, :kind_of => [String, Array] -attribute :ignoreregex, :kind_of => [String, Array] +property :filter, :kind_of => String, :name_attribute => true +property :source, :kind_of => String +property :failregex, :kind_of => [String, Array] +property :ignoreregex, :kind_of => [String, Array] + +action :create do + if new_resource.source + remote_file "/etc/fail2ban/filter.d/#{new_resource.filter}.conf" do + source new_resource.source + owner "root" + group "root" + mode 0o644 + end + else + template "/etc/fail2ban/filter.d/#{new_resource.filter}.conf" do + cookbook "fail2ban" + source "filter.erb" + owner "root" + group "root" + mode 0o644 + variables :failregex => new_resource.failregex, + :ignoreregex => new_resource.ignoreregex + end + end +end + +action :delete do + file "/etc/fail2ban/filter.d/#{new_resource.filter}.conf" do + action :delete + end +end def after_created notifies :reload, "service[fail2ban]"