summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authortea2ka <tea2ka@mail.goo.ne.jp>2014-03-21 22:50:03 +0900
committertea2ka <tea2ka@mail.goo.ne.jp>2014-03-21 22:50:03 +0900
commit628dc6cd7b92f182cc5252a5e6f60a0bf18d94da (patch)
tree83229e48735efb039f584dfc3a65e4c76635bf70 /scripts
parentbb71cf5b7b3a48812e28dbefba8c535f9bbf9973 (diff)
downloadvyatta-cfg-system-628dc6cd7b92f182cc5252a5e6f60a0bf18d94da.tar.gz
vyatta-cfg-system-628dc6cd7b92f182cc5252a5e6f60a0bf18d94da.zip
collect dhcpv6-options
The "dhcpv6-options" option parameter corrected the bug which is not reflected normally.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vyatta-dhcpv6-client.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vyatta-dhcpv6-client.pl b/scripts/vyatta-dhcpv6-client.pl
index 18fbfbd8..3a86f9ba 100755
--- a/scripts/vyatta-dhcpv6-client.pl
+++ b/scripts/vyatta-dhcpv6-client.pl
@@ -73,10 +73,10 @@ sub dhcpv6_options {
my $args = "";
$args .= " -T"
- if ($config->exists("dhcpv6-options/temporary"));
+ if ($config->exists("dhcpv6-options temporary"));
$args .= " -S"
- if ($config->exists("dhcpv6-options/parameters-only"));
+ if ($config->exists("dhcpv6-options parameters-only"));
return $args;
}