summaryrefslogtreecommitdiff
path: root/scripts/vyatta-op-dns-forwarding.pl
diff options
context:
space:
mode:
authorMohit Mehta <mohit.mehta@vyatta.com>2008-08-31 03:52:58 +0000
committerMohit Mehta <mohit.mehta@vyatta.com>2008-08-31 03:52:58 +0000
commit39ef568ad5da594f92ea445bfd1190aa54ff0fb8 (patch)
tree37de3638072f372c80d32eddcc9a0fafff7ca464 /scripts/vyatta-op-dns-forwarding.pl
parent01d0d701d42d9c491f4b21763c2ddc874e9a2eef (diff)
downloadvyatta-op-39ef568ad5da594f92ea445bfd1190aa54ff0fb8.tar.gz
vyatta-op-39ef568ad5da594f92ea445bfd1190aa54ff0fb8.zip
change command 'clear dns forwarding process' to 'clear dns forwarding statistics'
Diffstat (limited to 'scripts/vyatta-op-dns-forwarding.pl')
-rw-r--r--scripts/vyatta-op-dns-forwarding.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/vyatta-op-dns-forwarding.pl b/scripts/vyatta-op-dns-forwarding.pl
index 6ef8ebb..978ed33 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_process, $show_statistics, $show_nameservers);
+my ($clear_cache, $clear_statistics, $show_statistics, $show_nameservers);
GetOptions("clear-cache!" => \$clear_cache,
- "clear-process!" => \$clear_process,
+ "clear-statistics!" => \$clear_statistics,
"show-statistics!" => \$show_statistics,
"show-nameservers!" => \$show_nameservers);
@@ -224,7 +224,7 @@ if (defined $clear_cache) {
system("kill -1 `pidof dnsmasq`");
}
-if (defined $clear_process) {
+if (defined $clear_statistics) {
system("/etc/init.d/dnsmasq restart >&/dev/null");
}