File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 41
41
# Cosmetic corrections
42
42
43
43
# Proxmox_toolbox
44
- version=3.9.7
44
+ version=3.9.8
45
45
46
46
# V1.0: Initial Release
47
47
# V1.1: correct detecition of subscription message removal
@@ -71,6 +71,7 @@ version=3.9.7
71
71
# V3.9.5: Fix snmp file retreiving - add a success validation befor continuing.
72
72
# V3.9.6: add choice to restore the network configuration usefull in case of other network configuration / hardware
73
73
# V3.9.7: Add a first run backup for people who rekt their installation and blame the toolbox :) - add some enhancements
74
+ # V3.9.8: Uninstall fail2ban when restoring if no config exist in backup content
74
75
75
76
# check if root
76
77
if [[ $( id -u) -ne 0 ]] ; then echo " - Please run as root / sudo" ; exit 1 ; fi
@@ -774,9 +775,13 @@ backup_menu(){
774
775
echo " - snmp config found - installing snmpd"
775
776
apt-get -yqq install snmpd libsnmp-dev
776
777
fi
777
- if [ -d " /etc/fail2ban/" ]; then
778
+ archivecontent=$( tar -tvf $opt )
779
+ if cat $archivecontent | grep -qi fail2ban; then
778
780
echo " - fail2ban config found - installing fail2ban"
779
781
apt-get -yqq install fail2ban
782
+ else
783
+ echo " - fail2ban config NOT found - uninstalling fail2ban if existing"
784
+ apt-get -yqq remove --purge fail2ban
780
785
fi
781
786
echo " - Remounting previously existing storages if any"
782
787
if find /etc/systemd/system/* .mount; then
You can’t perform that action at this time.
0 commit comments