summaryrefslogtreecommitdiff
path: root/daemons
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2013-10-28 09:16:55 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-10-28 09:16:55 +0100
commitaece54e2c790d65c660bfe0bbbfd42d9cdd3fe27 (patch)
tree595a13886d6306df997cd1ce47e6be091184a772 /daemons
parent52b0837fc72d5be2b99b71e6223d54cbfaf1716a (diff)
Make boot script accept more fsck values
* daemons/rc.sh: Accept fsck returning 5 and 9 too.
Diffstat (limited to 'daemons')
-rw-r--r--daemons/rc.sh2
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
;;