From: NeilBrown Date: Thu, 26 Mar 2015 04:41:48 +0000 (+1100) Subject: dracut-systemd/rootfs-generator.sh: always create generated files. X-Git-Tag: 042~15^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f53ede36fb26716301d57706f889124ca20f3397;p=thirdparty%2Fdracut.git dracut-systemd/rootfs-generator.sh: always create generated files. When 'systemctl daemon-reload' is run, systemd will clean out /run/systemd/generator and re-run all the generators. So it is important that the generators always create the required files. rootfs-generator.sh currently does *not* create the desired files if $hookdir/initqueue/finished/devexists-${_name}.sh exists. This is not removed by "systectl daemon-reload" so the first time this generator is run it will do the right thing. Subsequent times it won't. This results in incorrect timeouts after "daemon-reload" is run. So let the existence of each file only guard the creation that file. Signed-off-by: NeilBrown --- diff --git a/modules.d/98dracut-systemd/rootfs-generator.sh b/modules.d/98dracut-systemd/rootfs-generator.sh index f3c7d1f23..97512c07a 100755 --- a/modules.d/98dracut-systemd/rootfs-generator.sh +++ b/modules.d/98dracut-systemd/rootfs-generator.sh @@ -11,14 +11,15 @@ generator_wait_for_dev() _timeout=$(getarg rd.timeout) _timeout=${_timeout:-0} - [ -e "$hookdir/initqueue/finished/devexists-${_name}.sh" ] && return 0 + if ! [ -e "$hookdir/initqueue/finished/devexists-${_name}.sh" ]; then - printf '[ -e "%s" ]\n' $1 \ - >> "$hookdir/initqueue/finished/devexists-${_name}.sh" - { - printf '[ -e "%s" ] || ' $1 - printf 'warn "\"%s\" does not exist"\n' $1 - } >> "$hookdir/emergency/80-${_name}.sh" + printf '[ -e "%s" ]\n' $1 \ + >> "$hookdir/initqueue/finished/devexists-${_name}.sh" + { + printf '[ -e "%s" ] || ' $1 + printf 'warn "\"%s\" does not exist"\n' $1 + } >> "$hookdir/emergency/80-${_name}.sh" + fi _name=$(dev_unit_name "$1") if ! [ -L /run/systemd/generator/initrd.target.wants/${_name}.device ]; then