net/vlan: Fix prestop when device was hard-removed already

During stop of an interface, if it has been removed already (eg
hotunplug), not existing is fine.

X-Gentoo-Bug: 395859
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=395859
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
This commit is contained in:
Robin H. Johnson 2011-12-26 17:56:26 -08:00
parent 537171eac2
commit 5615325a84

View File

@ -123,7 +123,7 @@ vlan_pre_stop()
{
local vlan=
_exists || return 1
_exists || return 0
for vlan in $(_get_vlans); do
einfo "Removing VLAN ${vlan##*.} from ${IFACE}"