From: Tails developers Date: Wed, 23 Nov 2011 10:16:43 +0000 (+0100) Subject: Making persistent-read-only work for home-rw overlays. X-Git-Tag: debian/3.0_a23-1~4 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=c70525edd757583351b41f6f00d7f94fd892bbfa;p=live-boot-grml.git Making persistent-read-only work for home-rw overlays. --- diff --git a/scripts/live b/scripts/live index c28314f..a8ac678 100755 --- a/scripts/live +++ b/scripts/live @@ -1578,7 +1578,17 @@ setup_unionfs () if [ -b "${homecow}" ] then - mount -t $(get_fstype "${homecow}") -o rw,noatime "${homecow}" "${rootmnt}/home" + if [ -z "${PERSISTENT_READONLY}" ] + then + mount -t $(get_fstype "${homecow}") -o rw,noatime "${homecow}" "${rootmnt}/home" + else + homerw="/cow/home" + homero="/$(basename ${homecow})-backing" + homemountpoint="${rootmnt}/home" + mkdir -p ${homerw} ${homero} ${homemountpoint} + mount -t $(get_fstype "${homecow}") -o ro "${homecow}" "${homero}" + mount -t "${UNIONTYPE}" -o "noatime,${noxino_opt}dirs=${homerw}=rw:${homero}=${roopt}" "${UNIONTYPE}" "${homemountpoint}" + fi export HOMEMOUNTED=1 # used to proper calculate free space in do_snap_copy() else log_warning_msg "Unable to find the persistent home medium"