Browse Source

Merge pull request #29 from Quarky9/master

Fix location of dracut-install for local mode
master
Harald Hoyer 10 years ago
parent
commit
34a1ec6a36
  1. 4
      dracut-functions.sh

4
dracut-functions.sh

@ -741,8 +741,8 @@ if ! [[ $DRACUT_INSTALL ]]; then @@ -741,8 +741,8 @@ if ! [[ $DRACUT_INSTALL ]]; then
DRACUT_INSTALL=$(find_binary dracut-install)
fi

if ! [[ $DRACUT_INSTALL ]] && [[ -x $dracutbasedir/dracut-install ]]; then
DRACUT_INSTALL=$dracutbasedir/dracut-install
if ! [[ $DRACUT_INSTALL ]] && [[ -x $dracutbasedir/install/dracut-install ]]; then
DRACUT_INSTALL=$dracutbasedir/install/dracut-install
fi

if ! [[ -x $DRACUT_INSTALL ]]; then

Loading…
Cancel
Save