dracut-functions.sh: create $initdir, if it does not exist
parent
1d59e3e592
commit
eaa924b69e
|
@ -28,6 +28,10 @@ if [[ $DRACUT_KERNEL_LAZY ]] && ! [[ $DRACUT_KERNEL_LAZY_HASHDIR ]]; then
|
||||||
DRACUT_KERNEL_LAZY_HASHDIR="$initdir/.kernelmodseen"
|
DRACUT_KERNEL_LAZY_HASHDIR="$initdir/.kernelmodseen"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ $initdir ]] && ! [[ -d $initdir ]]; then
|
||||||
|
mkdir -p "$initdir"
|
||||||
|
fi
|
||||||
|
|
||||||
# Generic substring function. If $2 is in $1, return 0.
|
# Generic substring function. If $2 is in $1, return 0.
|
||||||
strstr() { [[ $1 = *$2* ]]; }
|
strstr() { [[ $1 = *$2* ]]; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue