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