1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 11:03:37 +03:00

initrd-loop: allow continuing boot by killing sleep

This commit is contained in:
Linus Heckemann 2019-10-27 10:46:10 +01:00
parent 97d3690b27
commit 0cabf85b8f

View File

@ -24,7 +24,7 @@ in
init = lib.mkOrder (BEFORE_SWITCH_ROOT_INIT+1) '' init = lib.mkOrder (BEFORE_SWITCH_ROOT_INIT+1) ''
echo "Looping here forever..." echo "Looping here forever..."
while true; do while true; do
sleep 3600 sleep 3600 || break
done done
''; '';
}; };