We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d353297 commit b800eddCopy full SHA for b800edd
modules.d/99base/dracut-lib.sh
@@ -908,11 +908,11 @@ wait_for_dev()
908
909
[ -e "${PREFIX}$hookdir/initqueue/finished/devexists-${_name}.sh" ] && return 0
910
911
- printf '[ -e "%s" ]\n' $1 \
+ printf '[ -e "%s" ]\n' "$1" \
912
>> "${PREFIX}$hookdir/initqueue/finished/devexists-${_name}.sh"
913
{
914
- printf '[ -e "%s" ] || ' $1
915
- printf 'warn "\"%s\" does not exist"\n' $1
+ printf '[ -e "%s" ] || ' "$1"
+ printf 'warn "\"%s\" does not exist"\n' "$1"
916
} >> "${PREFIX}$hookdir/emergency/80-${_name}.sh"
917
918
set_systemd_timeout_for_dev $_noreload $1
0 commit comments