File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.
44## [ CURRENT] - Development
55### Features
66- Added support for configuring individual TTL per DNS record. Thanks to @jaapmarcus
7+ - Added support for Ubuntu Server 20.04 LTS
78
89### Bugfixes
910- Disable Apache2 Server Status Module by default.
@@ -20,6 +21,7 @@ All notable changes to this project will be documented in this file.
2021- Don't calculate /home folder size in v-list-sys-info.
2122- Cleanup temporary files when uploading custom SSL cert from WebUi.
2223- Cleanup temporary files when adding/renewing letsencrypt SSL cert.
24+ - Adjust v-list-sys-services to honor the changed fail2ban service name.
2325
2426## [ 1.1.1] - 2020-03-24 - Hotfix
2527### Features
Original file line number Diff line number Diff line change 284284
285285# Checking FIREWALL Fail2ban extention
286286if [ ! -z " $FIREWALL_EXTENSION " ]; then
287- get_srv_state $FIREWALL_EXTENSION fail2ban-server script
287+ if [ " $( lsb_release -s -r) " = " 20.04" ]; then
288+ get_srv_state $FIREWALL_EXTENSION f2b/server script
289+ else
290+ get_srv_state $FIREWALL_EXTENSION fail2ban-server script
291+ fi
288292 data=" $data \nNAME='$FIREWALL_EXTENSION ' SYSTEM='brute-force monitor'"
289293 data=" $data STATE='$state ' CPU='$cpu ' MEM='$mem ' RTIME='$rtime '"
290294fi
You can’t perform that action at this time.
0 commit comments