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.

(Cherry-picked commit: 45fc8df1cf3fdf9726efda4d26c7cccb9e6aedd2
  PR: dracutdevs/dracut#2379)

Resolves: RHEL-14251
  • Loading branch information
pvalena committed Nov 14, 2023
1 parent 4c75e51 commit 2ecd3aa
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions modules.d/95fcoe-uefi/parse-uefifcoe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,22 @@ print_fcoe_uefi_conf() {
mac=$(get_fcoe_boot_mac "$1")
[ -z "$mac" ] && return 1
dev=$(set_ifname fcoe "$mac")
vlan=$(get_fcoe_boot_vlan "$1")
if [ "$vlan" -ne "0" ]; then
case "$vlan" in
[0-9]*)
printf "%s\n" "vlan=$dev.$vlan:$dev"
dev="$dev.$vlan"
;;
*)
printf "%s\n" "vlan=$vlan:$dev"
dev="$vlan"
;;
esac
fi
vlan=$(get_fcoe_boot_vlan "$1") || return 1
case "$vlan" in
"0") ;;

'')
return 1
;;
[0-9]*)
printf "%s\n" "vlan=$dev.$vlan:$dev"
dev="$dev.$vlan"
;;
*)
printf "%s\n" "vlan=$vlan:$dev"
dev="$vlan"
;;
esac
# fcoe=eth0:nodcb
printf "fcoe=%s\n" "$dev:nodcb"
return 0
Expand Down

0 comments on commit 2ecd3aa

Please sign in to comment.