From 543fb89f5b94402a3fdb62f27832cfe1f9f1842e Mon Sep 17 00:00:00 2001 From: FĂ©lix Sipma Date: Wed, 8 Nov 2017 15:05:54 +0100 Subject: Fail2Ban: put local settings in .local files (API change) --- src/Propellor/Property/Fail2Ban.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Propellor/Property/Fail2Ban.hs b/src/Propellor/Property/Fail2Ban.hs index e44d449b..ca62fe62 100644 --- a/src/Propellor/Property/Fail2Ban.hs +++ b/src/Propellor/Property/Fail2Ban.hs @@ -43,10 +43,10 @@ jailConfigured name key value = jailConfFile name `containsIniSetting` (name, key, value) jailConfFile :: Jail -> FilePath -jailConfFile name = "/etc/fail2ban/jail.d/" ++ name ++ ".conf" +jailConfFile name = "/etc/fail2ban/jail.d/" ++ name ++ ".local" filterConfFile :: Filter -> FilePath -filterConfFile name = "/etc/fail2ban/filter.d/" ++ name ++ ".conf" +filterConfFile name = "/etc/fail2ban/filter.d/" ++ name ++ ".local" actionConfFile :: Action -> FilePath -actionConfFile name = "/etc/fail2ban/action.d/" ++ name ++ ".conf" +actionConfFile name = "/etc/fail2ban/action.d/" ++ name ++ ".local" -- cgit v1.2.3