diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2008-09-15 12:06:07 -0700 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2008-09-15 12:06:07 -0700 |
commit | 93f7c1c4d0ec76d81f093b2fc966cf56c17b372b (patch) | |
tree | 2c2029653f715a2fcfe726670f039aece0518bd3 | |
parent | 7e5b2d590d663c40b6d1a1c4a370b0c0bb770f8c (diff) | |
download | vyatta-op-93f7c1c4d0ec76d81f093b2fc966cf56c17b372b.tar.gz vyatta-op-93f7c1c4d0ec76d81f093b2fc966cf56c17b372b.zip |
change op-mode command 'clear dns forwarding statistics' to 'clear dns forwarding all'
-rw-r--r-- | scripts/vyatta-op-dns-forwarding.pl | 6 | ||||
-rw-r--r-- | templates/clear/dns/forwarding/all/node.def (renamed from templates/clear/dns/forwarding/statistics/node.def) | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/scripts/vyatta-op-dns-forwarding.pl b/scripts/vyatta-op-dns-forwarding.pl index 978ed33..24a64e6 100644 --- a/scripts/vyatta-op-dns-forwarding.pl +++ b/scripts/vyatta-op-dns-forwarding.pl @@ -213,10 +213,10 @@ sub print_nameservers { # # main # -my ($clear_cache, $clear_statistics, $show_statistics, $show_nameservers); +my ($clear_cache, $clear_all, $show_statistics, $show_nameservers); GetOptions("clear-cache!" => \$clear_cache, - "clear-statistics!" => \$clear_statistics, + "clear-all!" => \$clear_all, "show-statistics!" => \$show_statistics, "show-nameservers!" => \$show_nameservers); @@ -224,7 +224,7 @@ if (defined $clear_cache) { system("kill -1 `pidof dnsmasq`"); } -if (defined $clear_statistics) { +if (defined $clear_all) { system("/etc/init.d/dnsmasq restart >&/dev/null"); } diff --git a/templates/clear/dns/forwarding/statistics/node.def b/templates/clear/dns/forwarding/all/node.def index 6441e12..b439b78 100644 --- a/templates/clear/dns/forwarding/statistics/node.def +++ b/templates/clear/dns/forwarding/all/node.def @@ -1,8 +1,8 @@ -help: Clear DNS forwarding statistics +help: Clear DNS forwarding cache and counters 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 + sudo /opt/vyatta/bin/sudo-users/vyatta-op-dns-forwarding.pl --clear-all else echo "DNS forwarding not configured" fi |