diff options
author | Bill Nottingham <notting@redhat.com> | 2010-04-23 14:31:32 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2010-04-23 14:31:32 -0400 |
commit | b3d4e4fc8945cb525d2a56f806051aa7e3a35433 (patch) | |
tree | ba6be2405af07944ae64151057645e4c5a63dd56 /sysconfig | |
parent | 955bf85bb2213cdf0cf831fab15e36a89fce2c6f (diff) | |
download | initscripts-b3d4e4fc8945cb525d2a56f806051aa7e3a35433.tar initscripts-b3d4e4fc8945cb525d2a56f806051aa7e3a35433.tar.gz initscripts-b3d4e4fc8945cb525d2a56f806051aa7e3a35433.tar.bz2 initscripts-b3d4e4fc8945cb525d2a56f806051aa7e3a35433.tar.xz initscripts-b3d4e4fc8945cb525d2a56f806051aa7e3a35433.zip |
Run dhclient -6 similar to dhclient -4. (#585047)
Diffstat (limited to 'sysconfig')
-rwxr-xr-x | sysconfig/network-scripts/ifup-eth | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup-eth b/sysconfig/network-scripts/ifup-eth index 51d1ae4f..9e5e4b12 100755 --- a/sysconfig/network-scripts/ifup-eth +++ b/sysconfig/network-scripts/ifup-eth @@ -289,7 +289,7 @@ fi # IPv6 initialisation? /etc/sysconfig/network-scripts/ifup-ipv6 ${CONFIG} if [[ "${DHCPV6C}" = [Yy1]* ]] && [ -x /sbin/dhclient ]; then - /sbin/dhclient -6 ${DHCPV6C_OPTIONS} -lf /var/lib/dhclient/dhclient6-${DEVICE}.leases -pf /var/run/dhclient6-${DEVICE}.pid ${DHCP_HOSTNAME:+-H $DHCP_HOSTNAME} ${DEVICE} + /sbin/dhclient -6 -1 ${DHCPV6C_OPTIONS} -lf /var/lib/dhclient/dhclient6-${DEVICE}.leases -pf /var/run/dhclient6-${DEVICE}.pid ${DHCP_HOSTNAME:+-H $DHCP_HOSTNAME} ${DEVICE} fi if [ "${IPX}" = yes ]; then |