Skip to content

Commit

Permalink
fix(fcoe-uefi): exit early on empty vlan
Browse files Browse the repository at this point in the history
Exit early in case get_fcoe_boot_vlan exits with error or just an empty string,
instead of producing invalid config entry.
  • Loading branch information
pvalena committed Jun 7, 2023
1 parent aa20bbb commit e4be000
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules.d/95fcoe-uefi/parse-uefifcoe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ print_fcoe_uefi_conf() {
[ -z "$mac" ] && return 1
dev=$(set_ifname fcoe "$mac")
vlan=$(get_fcoe_boot_vlan "$1")
if [ -z "$vlan" ]; then
return 1
fi
if [ "$vlan" -ne "0" ]; then
case "$vlan" in
[0-9]*)
Expand Down

0 comments on commit e4be000

Please sign in to comment.