bsdinstall: kill dhclient before starting a new instance
PR: 205821 Submitted by: William Orr <will@worrbase.com> MFC after: 2 weeks Sponsored by: Klara Inc. Event: July 2020 Bugathon Differential Revision: https://reviews.freebsd.org/D14572
This commit is contained in:
parent
4b9ac8a0a6
commit
9a55656956
@ -51,7 +51,7 @@ if [ $? -eq $DIALOG_OK ]; then
|
||||
if [ ! -z $BSDINSTALL_CONFIGCURRENT ]; then
|
||||
ifconfig $INTERFACE up
|
||||
dialog --backtitle 'FreeBSD Installer' --infobox "Acquiring DHCP lease..." 0 0
|
||||
err=$( dhclient $INTERFACE 2>&1 )
|
||||
err=$( pkill dhclient; dhclient $INTERFACE 2>&1 )
|
||||
if [ $? -ne 0 ]; then
|
||||
f_dprintf "%s" "$err"
|
||||
dialog --backtitle 'FreeBSD Installer' --msgbox "DHCP lease acquisition failed." 0 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user