]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/fail2ban/recipes/default.rb
Use gamin instead of inotify on Ubuntu
[chef.git] / cookbooks / fail2ban / recipes / default.rb
index 3ad626ff021588e2f183b118edea44d2be57d1d4..060251680b6d9201ba6e1434e618253eb5d52c12 100644 (file)
 include_recipe "munin"
 include_recipe "prometheus"
 
-package "fail2ban"
+package %w[
+  fail2ban
+  python3-systemd
+  ruby-webrick
+]
+
+if platform?("debian")
+  package "python3-inotify"
+else
+  package "gamin"
+end
 
 template "/etc/fail2ban/jail.d/00-default.conf" do
   source "jail.default.erb"
@@ -46,4 +56,6 @@ munin_plugin "fail2ban"
 
 prometheus_exporter "fail2ban" do
   port 9635
+  user "root"
+  restrict_address_families "AF_UNIX"
 end