1
0
mirror of synced 2024-11-25 22:36:04 +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
}
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() {
if grep -qs "hwdsl2 VPN script" /etc/sysctl.conf; then
bigecho "Updating sysctl settings..."
@ -273,6 +281,7 @@ remove_vpn() {
stop_services
remove_ipsec
remove_xl2tpd
remove_ikev2_script
update_sysctl
update_rclocal
update_iptables_rules