Trap fsck for SIGINT as well, so user can ctrl-C to abort fsck and continue, Gentoo #223473.

This commit is contained in:
Roy Marples 2008-05-27 10:25:29 +00:00
parent 6b77cc624f
commit 3a592fa31b

View File

@ -63,7 +63,7 @@ start()
reboot_opts="-f"
fi
trap : QUIT
trap : INT QUIT
fsck ${fsck_args--p} ${fsck_opts} "$@"
case $? in
0) eend 0; return 0;;