summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/live10
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/live b/scripts/live
index db1d355..6af9825 100755
--- a/scripts/live
+++ b/scripts/live
@@ -71,6 +71,11 @@ Arguments ()
export FETCH
;;
+ forcepersistentfsck)
+ FORCEPERSISTENTFSCK="Yes"
+ export FORCEPERSISTENTFSCK
+ ;;
+
hook=*)
HOOK="${ARGUMENT#hook=}"
export HOOK
@@ -1228,6 +1233,11 @@ setup_unionfs ()
cowdevice=${cowprobe}
cow_fstype=$(get_fstype "${cowprobe}")
cow_mountopt="rw,noatime"
+
+ if [ "${FORCEPERSISTENTFSCK}" = "Yes" ]
+ then
+ fsck -y ${cowdevice}
+ fi
else
log_warning_msg "Unable to find the persistent medium"
cowdevice="tmpfs"