diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-10-28 09:16:55 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-10-28 09:16:55 +0100 |
commit | aece54e2c790d65c660bfe0bbbfd42d9cdd3fe27 (patch) | |
tree | 595a13886d6306df997cd1ce47e6be091184a772 | |
parent | 52b0837fc72d5be2b99b71e6223d54cbfaf1716a (diff) |
Make boot script accept more fsck values
* daemons/rc.sh: Accept fsck returning 5 and 9 too.
-rw-r--r-- | daemons/rc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemons/rc.sh b/daemons/rc.sh index 2239bf72..5cf44fa6 100644 --- a/daemons/rc.sh +++ b/daemons/rc.sh @@ -34,7 +34,7 @@ then /sbin/reboot ;; # Fsck couldn't fix it. - 4 | 8) + 4 | 5 | 8 | 9) echo "Automatic boot failed... help!" exit 1 ;; |