Skip to content

Commit bc984ee

Browse files
authored
uninstall fail2ban if not existing in backup
1 parent e06e022 commit bc984ee

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

proxmox_toolbox.sh

+7-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
# Cosmetic corrections
4242

4343
# Proxmox_toolbox
44-
version=3.9.7
44+
version=3.9.8
4545

4646
# V1.0: Initial Release
4747
# V1.1: correct detecition of subscription message removal
@@ -71,6 +71,7 @@ version=3.9.7
7171
# V3.9.5: Fix snmp file retreiving - add a success validation befor continuing.
7272
# V3.9.6: add choice to restore the network configuration usefull in case of other network configuration / hardware
7373
# 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
7475

7576
# check if root
7677
if [[ $(id -u) -ne 0 ]] ; then echo "- Please run as root / sudo" ; exit 1 ; fi
@@ -774,9 +775,13 @@ backup_menu(){
774775
echo "- snmp config found - installing snmpd"
775776
apt-get -yqq install snmpd libsnmp-dev
776777
fi
777-
if [ -d "/etc/fail2ban/" ]; then
778+
archivecontent=$(tar -tvf $opt)
779+
if cat $archivecontent | grep -qi fail2ban; then
778780
echo "- fail2ban config found - installing fail2ban"
779781
apt-get -yqq install fail2ban
782+
else
783+
echo "- fail2ban config NOT found - uninstalling fail2ban if existing"
784+
apt-get -yqq remove --purge fail2ban
780785
fi
781786
echo "- Remounting previously existing storages if any"
782787
if find /etc/systemd/system/*.mount; then

0 commit comments

Comments
 (0)