2020-11-13 23:04:43 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-06-03 13:59:15 +02:00
|
|
|
rm /etc/nftables-rules.d/90-pppd
|
2020-11-13 23:56:59 +01:00
|
|
|
rm /etc/sysctl.d/90-pppd.conf
|
2020-11-13 23:04:43 +01:00
|
|
|
|
2021-06-04 07:20:10 +02:00
|
|
|
if systemctl is-active nftables;
|
|
|
|
then
|
|
|
|
systemctl reload nftables
|
|
|
|
else
|
|
|
|
systemctl restart nftables
|
|
|
|
fi
|