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

88 lines
2.4 KiB
Bash
Raw Permalink Normal View History

#!/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.
track_img() {
info "mount: [%s]" "$2"
mount "$@" && IMG_ACTIVE_MOUNTS=("$2" "${IMG_ACTIVE_MOUNTS[@]}")
}
mount_img() {
IMG_ACTIVE_MOUNTS=()
mkdir -p "$2"
track_img "$1" "$2"
}
umount_img() {
2018-04-14 00:07:43 +02:00
if [[ -n ${IMG_ACTIVE_MOUNTS[@]} ]]; then
info "umount: [%s]" "${IMG_ACTIVE_MOUNTS[@]}"
umount "${IMG_ACTIVE_MOUNTS[@]}"
unset IMG_ACTIVE_MOUNTS
rm -r "$1"
fi
}
track_fs() {
info "overlayfs mount: [%s]" "$5"
mount "$@" && FS_ACTIVE_MOUNTS=("$5" "${FS_ACTIVE_MOUNTS[@]}")
2016-02-27 12:31:29 +01:00
}
# $1: new branch
mount_fs_root(){
FS_ACTIVE_MOUNTS=()
mkdir -p "${mnt_dir}/work"
track_fs -t overlay overlay -olowerdir="${work_dir}/rootfs",upperdir="$1",workdir="${mnt_dir}/work" "$1"
}
mount_fs_desktop(){
FS_ACTIVE_MOUNTS=()
mkdir -p "${mnt_dir}/work"
track_fs -t overlay overlay -olowerdir="${work_dir}/desktopfs":"${work_dir}/rootfs",upperdir="$1",workdir="${mnt_dir}/work" "$1"
}
2015-06-25 09:59:35 +02:00
mount_fs_live(){
FS_ACTIVE_MOUNTS=()
mkdir -p "${mnt_dir}/work"
track_fs -t overlay overlay -olowerdir="${work_dir}/livefs":"${work_dir}/desktopfs":"${work_dir}/rootfs",upperdir="$1",workdir="${mnt_dir}/work" "$1"
}
mount_fs_net(){
FS_ACTIVE_MOUNTS=()
mkdir -p "${mnt_dir}/work"
track_fs -t overlay overlay -olowerdir="${work_dir}/livefs":"${work_dir}/rootfs",upperdir="$1",workdir="${mnt_dir}/work" "$1"
}
2021-07-20 11:07:52 +02:00
check_umount() {
2021-07-20 13:09:23 +02:00
if mountpoint -q "$1"
then
2021-07-20 11:07:52 +02:00
umount -l "$1"
fi
}
umount_fs(){
2018-04-14 00:07:43 +02:00
if [[ -n ${FS_ACTIVE_MOUNTS[@]} ]]; then
2021-07-20 10:19:08 +02:00
info "overlayfs umount: [%s]" "${FS_ACTIVE_MOUNTS[@]}"
2021-07-20 09:13:41 +02:00
#umount "${FS_ACTIVE_MOUNTS[@]}"
2021-07-20 10:46:08 +02:00
for i in "${FS_ACTIVE_MOUNTS[@]}"
do
2021-07-20 14:08:18 +02:00
info "umount overlayfs: [%s]" "$i"
2021-07-20 11:07:52 +02:00
check_umount $i
2021-07-20 10:46:08 +02:00
done
unset FS_ACTIVE_MOUNTS
rm -rf "${mnt_dir}/work"
2016-09-15 23:58:18 +02:00
fi
2021-07-20 12:12:29 +02:00
mount_folders=$(grep "${work_dir}" /proc/mounts | awk '{print$2}' | sort -r)
2021-07-20 13:27:26 +02:00
for i in $mount_folders
2021-07-20 11:40:31 +02:00
do
2021-07-20 14:08:18 +02:00
info "umount folder: [%s]" "$i"
2021-07-20 11:40:31 +02:00
check_umount $i
done
2015-06-25 09:59:35 +02:00
}