|
Lines 86-91
Link Here
|
| 86 |
do_unmount "umount" "${RC_NO_UMOUNTS}" |
86 |
do_unmount "umount" "${RC_NO_UMOUNTS}" |
| 87 |
eend $? |
87 |
eend $? |
| 88 |
|
88 |
|
|
|
89 |
# Conditionally run filesystem checks. Note that /forcefsck skips this and |
| 90 |
# causes the forced checks to run upon boot. This is because doing forced |
| 91 |
# checks then removing /forcefsck is not practical at this point. |
| 92 |
conf=$(add_suffix /etc/conf.d/checkfs) |
| 93 |
if [[ -e ${conf} ]] ; then |
| 94 |
( |
| 95 |
. ${conf} |
| 96 |
if [[ ${FSCK_SHUTDOWN} == "yes" && ! -f /forcefsck ]]; then |
| 97 |
. /etc/init.d/checkfs |
| 98 |
start |
| 99 |
fi |
| 100 |
) |
| 101 |
fi |
| 102 |
|
| 89 |
# Try to remove any dm-crypt mappings |
103 |
# Try to remove any dm-crypt mappings |
| 90 |
stop_addon dm-crypt |
104 |
stop_addon dm-crypt |
| 91 |
|
105 |
|