mirror of
https://github.com/linuxserver/docker-swag.git
synced 2024-12-25 07:19:26 -05:00
Update run to make fail2ban.local consistent with jail.local
Updating /config/fail2ban/jail.local will update its copy in /etc/fail2ban/. Users would expect the same behavior with fail2ban.local
This commit is contained in:
parent
59d1c8a724
commit
198b735894
@ -17,6 +17,10 @@ cp -R /defaults/fail2ban/action.d /config/fail2ban/
|
|||||||
if [[ ! -f /config/fail2ban/jail.local ]]; then
|
if [[ ! -f /config/fail2ban/jail.local ]]; then
|
||||||
cp /defaults/fail2ban/jail.local /config/fail2ban/jail.local
|
cp /defaults/fail2ban/jail.local /config/fail2ban/jail.local
|
||||||
fi
|
fi
|
||||||
|
# if fail2ban.local is missing in /config, copy default
|
||||||
|
if [[ ! -f /config/fail2ban/fail2ban.local ]]; then
|
||||||
|
cp /defaults/fail2ban/fail2ban.local /config/fail2ban/fail2ban.local
|
||||||
|
fi
|
||||||
# Replace fail2ban config with user config
|
# Replace fail2ban config with user config
|
||||||
if [[ -d /etc/fail2ban/filter.d ]]; then
|
if [[ -d /etc/fail2ban/filter.d ]]; then
|
||||||
rm -rf /etc/fail2ban/filter.d
|
rm -rf /etc/fail2ban/filter.d
|
||||||
@ -26,7 +30,7 @@ if [[ -d /etc/fail2ban/action.d ]]; then
|
|||||||
fi
|
fi
|
||||||
cp -R /config/fail2ban/filter.d /etc/fail2ban/
|
cp -R /config/fail2ban/filter.d /etc/fail2ban/
|
||||||
cp -R /config/fail2ban/action.d /etc/fail2ban/
|
cp -R /config/fail2ban/action.d /etc/fail2ban/
|
||||||
cp /defaults/fail2ban/fail2ban.local /etc/fail2ban/
|
cp /config/fail2ban/fail2ban.local /etc/fail2ban/fail2ban.local
|
||||||
cp /config/fail2ban/jail.local /etc/fail2ban/jail.local
|
cp /config/fail2ban/jail.local /etc/fail2ban/jail.local
|
||||||
|
|
||||||
# logfiles needed by fail2ban
|
# logfiles needed by fail2ban
|
||||||
|
Loading…
Reference in New Issue
Block a user