diff --git a/modules.d/99base/dracut-lib.sh b/modules.d/99base/dracut-lib.sh index dc94e93fbe..2a5b536d8b 100755 --- a/modules.d/99base/dracut-lib.sh +++ b/modules.d/99base/dracut-lib.sh @@ -599,6 +599,9 @@ label_uuid_to_dev() { PARTUUID=*) echo "/dev/disk/by-partuuid/$(echo "${_dev#PARTUUID=}" | tr "[:upper:]" "[:lower:]")" ;; + *) + echo "$_dev" + ;; esac }