File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ All notable changes to this project will be documented in this file.
3232- Fixed issue with sftp-jail not working for users restored from backups
3333- SecImprove: Improved input validation in multiple cli scripts
3434- Performance: Do not load complete notifications list on every page load, reduced load time from over 1sec to under 100ms
35+ - Performance: Do not resolve ip when listing iptables rules. Server tab could take multiple minutes to load in some cases.
3536
3637## [ 1.0.5] - 2019-08-06 - Hotfix
3738### Bugfixes
Original file line number Diff line number Diff line change 273273# Checking FIREWALL system
274274if [ ! -z " $FIREWALL_SYSTEM " ] && [ " $FIREWALL_SYSTEM " != ' remote' ]; then
275275 state=" stopped"
276- /sbin/iptables -L fail2ban-HESTIA > /dev/null 2>&1
276+ /sbin/iptables -n - L fail2ban-HESTIA > /dev/null 2>&1
277277 if [ " $? " -eq 0 ]; then
278278 state=" running"
279279 fi
You can’t perform that action at this time.
0 commit comments