diff options
Diffstat (limited to 'scripts/vyatta-op-dns-forwarding.pl')
-rw-r--r-- | scripts/vyatta-op-dns-forwarding.pl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/vyatta-op-dns-forwarding.pl b/scripts/vyatta-op-dns-forwarding.pl index c53c7a0..6ef8ebb 100644 --- a/scripts/vyatta-op-dns-forwarding.pl +++ b/scripts/vyatta-op-dns-forwarding.pl @@ -213,9 +213,10 @@ sub print_nameservers { # # main # -my ($clear_cache, $show_statistics, $show_nameservers); +my ($clear_cache, $clear_process, $show_statistics, $show_nameservers); GetOptions("clear-cache!" => \$clear_cache, + "clear-process!" => \$clear_process, "show-statistics!" => \$show_statistics, "show-nameservers!" => \$show_nameservers); @@ -223,6 +224,10 @@ if (defined $clear_cache) { system("kill -1 `pidof dnsmasq`"); } +if (defined $clear_process) { + system("/etc/init.d/dnsmasq restart >&/dev/null"); +} + if (defined $show_statistics) { system("echo > /var/log/dnsmasq.log; kill -10 `pidof dnsmasq`"); get_cache_stats; |