From 20812843d3495793d51a1dd4d1cf5d063fff5665 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Mon, 4 Sep 2023 12:21:49 +1000 Subject: [PATCH] Bug fix for bind mounted $LIVE variant ($UPPER=$LOWER) --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions b/functions index 959d762..fa1d527 100644 --- a/functions +++ b/functions @@ -163,7 +163,7 @@ setup_overlay() { elif [ "$LIVE" != "$UPPER" ] ; then # With UPPER = LOWER we rather make a bind mount to LIVE env CONFIG="$CONFIG" $PREMOUNT "$UPPER" - mount --bind $UPPER $LOWER + mount --bind $UPPER $LIVE fi grep ^SHARE= "$CONFIG" | while read A ; do -- 2.39.2