Browse Source

dracut.sh: turn off hostonly mode, if udev database is not found

master
Harald Hoyer 12 years ago
parent
commit
78d1d4f86d
  1. 4
      dracut.sh

4
dracut.sh

@ -788,6 +788,10 @@ if [[ $hostonly ]]; then @@ -788,6 +788,10 @@ if [[ $hostonly ]]; then
unset hostonly
fi
done
if ! [[ -d /run/udev/data ]]; then
dwarning "Turning off host-only mode: udev database not found!"
unset hostonly
fi
fi

declare -A host_fs_types

Loading…
Cancel
Save