diff options
author | Roy Marples <roy@marples.name> | 2008-05-27 10:25:29 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-05-27 10:25:29 +0000 |
commit | 3a592fa31b2f51062d496378153e7e446f8246fc (patch) | |
tree | cde30f0bb6a756b9651ad749a32a7de53a503202 /init.d/fsck.in | |
parent | 6b77cc624fcdd920375f7305ae8197a6b8369815 (diff) |
Trap fsck for SIGINT as well, so user can ctrl-C to abort fsck and continue, Gentoo #223473.
Diffstat (limited to 'init.d/fsck.in')
-rw-r--r-- | init.d/fsck.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/fsck.in b/init.d/fsck.in index e8a65814..07cd8f38 100644 --- a/init.d/fsck.in +++ b/init.d/fsck.in @@ -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;; |