From efd07e5e116a60745706e5d306c1f912eaa0ed78 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Tue, 26 Jul 2016 10:58:09 +0930 Subject: [PATCH] Remove '-x' flag from dhcpwithoutra launch of dhcp6c This is the equivalent fix for the RELENG_2_3 branch to pull request #3078 --- src/etc/inc/interfaces.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/interfaces.inc b/src/etc/inc/interfaces.inc index 97f09fc270..87eca64869 100644 --- a/src/etc/inc/interfaces.inc +++ b/src/etc/inc/interfaces.inc @@ -4048,7 +4048,7 @@ function interface_dhcpv6_configure($interface = "wan", $wancfg) { if (isset($wancfg['dhcp6withoutra'])) { kill_dhcp6client_process($wanif); - mwexec("/usr/local/sbin/dhcp6c {$debugOption} -x -c {$g['varetc_path']}/dhcp6c_wan.conf -p {$g['varrun_path']}/dhcp6c_{$wanif}.pid {$wanif}"); + mwexec("/usr/local/sbin/dhcp6c {$debugOption} -c {$g['varetc_path']}/dhcp6c_wan.conf -p {$g['varrun_path']}/dhcp6c_{$wanif}.pid {$wanif}"); mwexec("/usr/bin/logger -t mwtag 'Starting dhcp6 client for interface wan({$wanif} in IPoE mode)'"); } mwexec("/usr/sbin/rtsold -1 -p {$g['varrun_path']}/rtsold_{$wanif}.pid -O {$g['varetc_path']}/rtsold_{$wanif}_script.sh {$wanif}");