blob: 6441e129b07653a70e8d825f20b76cfe88b3b0b1 (
plain)
1
2
3
4
5
6
7
8
|
help: Clear DNS forwarding statistics
run:
if ps ax | grep dnsmasq | grep -v grep > /dev/null
then
sudo /opt/vyatta/bin/sudo-users/vyatta-op-dns-forwarding.pl --clear-statistics
else
echo "DNS forwarding not configured"
fi
|