From 9a5185bf94c7012acf6c63488449760de3abab4b Mon Sep 17 00:00:00 2001 From: Lukas Nykryn Date: Fri, 6 Jan 2017 15:49:04 +0100 Subject: ifup-eth: remove quote marks With quote marks all the parameters to dhclient are passed as one Resolves: #1410429 --- sysconfig/network-scripts/ifup-eth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysconfig/network-scripts/ifup-eth b/sysconfig/network-scripts/ifup-eth index 7f21477c..b6a883f6 100755 --- a/sysconfig/network-scripts/ifup-eth +++ b/sysconfig/network-scripts/ifup-eth @@ -343,7 +343,7 @@ if is_true "${DHCPV6C}" && [ -x /sbin/dhclient ]; then DHCLIENTARGS="-6 -1 ${DHCPV6C_OPTIONS} ${DHCLIENTCONF} -lf ${LEASEFILE} -pf /var/run/dhclient6-${DEVICE}.pid ${DHCP_HOSTNAME:+-H $DHCP_HOSTNAME} ${DEVICE}" fi - if /sbin/dhclient "$DHCLIENTARGS"; then + if /sbin/dhclient $DHCLIENTARGS; then echo $" done." else echo $" failed." -- cgit v1.2.1