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

31 lines
933 B
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.
# $1: new branch
mount_root_image(){
2015-06-28 11:56:02 +02:00
msg2 "aufs: mount [root-image] on [${1##*/}]"
2015-06-11 21:50:18 +02:00
mount -t aufs -o br="$1":${work_dir}/root-image=ro none "$1"
}
2015-06-25 09:59:35 +02:00
mount_custom_image(){
2015-06-28 11:56:02 +02:00
msg2 "aufs: mount [${1##*/}] on [${custom}-image]"
mount -t aufs -o br="$1":${work_dir}/${custom}-image=ro:${work_dir}/root-image=ro none "$1"
2015-06-11 21:50:18 +02:00
}
2015-06-25 09:59:35 +02:00
# $1: image path
umount_image(){
2015-06-11 21:50:18 +02:00
if mountpoint -q "$1";then
msg2 "aufs: unmount ${1##*/}"
2015-06-11 21:50:18 +02:00
umount $1
fi
find $1 -name '.wh.*' -delete &> /dev/null
}