Revert r257715. This breaks the case where devd isn't running. The

real solution to this is still being discussed and probably won't look
quite like this.
This commit is contained in:
John Baldwin 2013-11-12 18:59:23 +00:00
parent 5c263f43ef
commit 25c58526a3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=258061

View File

@ -1429,6 +1429,9 @@ childif_create()
fi
${IFCONFIG_CMD} $i name $child && cfg=0
fi
if autoif $child; then
ifn_start $child
fi
done
# Create vlan interfaces
@ -1452,6 +1455,9 @@ childif_create()
${IFCONFIG_CMD} $i name $child && cfg=0
fi
fi
if autoif $child; then
ifn_start $child
fi
done
return ${cfg}