Commit 210522b1 authored by Franco Fichtner's avatar Franco Fichtner

rc: print that fsck is running; closes #1519

(cherry picked from commit 184c79b1)
parent a0fda4af
...@@ -149,7 +149,11 @@ echo "Starting import for partition '${PART}'." ...@@ -149,7 +149,11 @@ echo "Starting import for partition '${PART}'."
echo echo
mkdir -p ${MNT} mkdir -p ${MNT}
echo -n "Running fsck..."
fsck -t ufs -y ${PART} > /dev/null fsck -t ufs -y ${PART} > /dev/null
echo "done."
if ! mount ${PART} ${MNT} 2> /dev/null; then if ! mount ${PART} ${MNT} 2> /dev/null; then
echo "The device could not be mounted." echo "The device could not be mounted."
bootstrap_and_exit bootstrap_and_exit
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment