1
0
mirror of synced 2024-11-26 06:46:06 +03:00

Improve VPN setup

- Remove IKEv2 script when uninstalling
This commit is contained in:
hwdsl2 2021-09-22 00:03:20 -05:00
parent a47ced7899
commit 7b6d982875

View File

@ -163,6 +163,14 @@ remove_xl2tpd() {
fi fi
} }
remove_ikev2_script() {
bigecho "Removing IKEv2 script..."
if [ "$(readlink -f /usr/bin/ikev2.sh 2>/dev/null)" = "/opt/src/ikev2.sh" ]; then
/bin/rm -f /usr/bin/ikev2.sh
fi
/bin/rm -f /opt/src/ikev2.sh
}
update_sysctl() { update_sysctl() {
if grep -qs "hwdsl2 VPN script" /etc/sysctl.conf; then if grep -qs "hwdsl2 VPN script" /etc/sysctl.conf; then
bigecho "Updating sysctl settings..." bigecho "Updating sysctl settings..."
@ -273,6 +281,7 @@ remove_vpn() {
stop_services stop_services
remove_ipsec remove_ipsec
remove_xl2tpd remove_xl2tpd
remove_ikev2_script
update_sysctl update_sysctl
update_rclocal update_rclocal
update_iptables_rules update_iptables_rules