fix S11configbackup is not run when not using overlay rootfs

This commit is contained in:
archandanime 2023-10-03 20:39:21 +07:00 committed by GitHub
parent 24b30d21d9
commit 7eddbb6c18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@
if df / | grep -q overlayfs; then
mount --bind /sdcard /opt # Temporarily let this script do its operations as if SD Card is mounted as /opt
fi
case "$1" in
start)
@ -59,6 +60,7 @@ case "$1" in
exit 1
;;
esac
if df / | grep -q overlayfs; then
umount /opt
fi