Merge pull request #14474 from MatrixAI/fixed-stage1
nixos/stage-1: Removed logCommands conditional for resetting the file descriptors after completion of logging
This commit is contained in:
commit
97c8bf61ef
|
@ -434,11 +434,8 @@ udevadm control --exit
|
||||||
|
|
||||||
# Reset the logging file descriptors.
|
# Reset the logging file descriptors.
|
||||||
# Do this just before pkill, which will kill the tee process.
|
# Do this just before pkill, which will kill the tee process.
|
||||||
if test -n "@logCommands@"
|
exec 1>&$logOutFd 2>&$logErrFd
|
||||||
then
|
eval "exec $logOutFd>&- $logErrFd>&-"
|
||||||
exec 1>&$logOutFd 2>&$logErrFd
|
|
||||||
eval "exec $logOutFd>&- $logErrFd>&-"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Kill any remaining processes, just to be sure we're not taking any
|
# Kill any remaining processes, just to be sure we're not taking any
|
||||||
# with us into stage 2. But keep storage daemons like unionfs-fuse.
|
# with us into stage 2. But keep storage daemons like unionfs-fuse.
|
||||||
|
|
Loading…
Reference in New Issue