manjaro-tools/lib/util-iso-aufs.sh

41 lines
1.2 KiB
Bash
Raw Normal View History

2015-06-11 21:50:18 +02:00
#!/bin/bash
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
2016-02-27 12:31:29 +01:00
track_image() {
2016-09-15 23:58:18 +02:00
info "%s mount: [%s]" "${iso_fs}" "$6"
mount "$@" && IMAGE_ACTIVE_MOUNTS=("$6" "${IMAGE_ACTIVE_MOUNTS[@]}")
2016-02-27 12:31:29 +01:00
}
2015-06-11 21:50:18 +02:00
# $1: new branch
2016-02-25 15:51:25 +01:00
mount_image(){
2016-09-15 23:58:18 +02:00
IMAGE_ACTIVE_MOUNTS=()
track_image -t aufs -o br="$1":${work_dir}/rootfs=ro none "$1"
2015-06-11 21:50:18 +02:00
}
2016-02-25 15:51:25 +01:00
mount_image_custom(){
2016-09-15 23:58:18 +02:00
IMAGE_ACTIVE_MOUNTS=()
track_image -t aufs -o br="$1":${work_dir}/desktopfs=ro:${work_dir}/rootfs=ro none "$1"
2015-06-11 21:50:18 +02:00
}
mount_image_live(){
IMAGE_ACTIVE_MOUNTS=()
track_image -t aufs -o br="$1":${work_dir}/livefs=ro:${work_dir}/rootfs=ro none "$1"
}
2015-06-25 09:59:35 +02:00
# $1: image path
umount_image(){
2016-09-15 23:58:18 +02:00
if [[ -n ${IMAGE_ACTIVE_MOUNTS[@]} ]];then
umount "${IMAGE_ACTIVE_MOUNTS[@]}"
unset IMAGE_ACTIVE_MOUNTS
find $1 -name '.wh.*' -delete &> /dev/null
fi
}