mirror of
https://github.com/Kron4ek/Conty
synced 2024-11-16 19:50:06 +01:00
Run unionfs-fuse through the launch_wrapper
It should have been like this from the start, my oversight.
This commit is contained in:
parent
413054553e
commit
8ddb47e225
1 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ script_version="1.24.1"
|
||||||
# size to 0
|
# size to 0
|
||||||
init_size=40000
|
init_size=40000
|
||||||
bash_size=1339208
|
bash_size=1339208
|
||||||
script_size=36053
|
script_size=36068
|
||||||
busybox_size=1161112
|
busybox_size=1161112
|
||||||
utils_size=4101345
|
utils_size=4101345
|
||||||
|
|
||||||
|
@ -347,7 +347,7 @@ mount_overlayfs () {
|
||||||
|
|
||||||
if [ ! "$(ls "${overlayfs_dir}"/merged 2>/dev/null)" ]; then
|
if [ ! "$(ls "${overlayfs_dir}"/merged 2>/dev/null)" ]; then
|
||||||
if command -v "${unionfs_fuse}" 1>/dev/null; then
|
if command -v "${unionfs_fuse}" 1>/dev/null; then
|
||||||
"${unionfs_fuse}" -o relaxed_permissions,cow,noatime "${overlayfs_dir}"/up=RW:"${mount_point}"=RO "${overlayfs_dir}"/merged
|
launch_wrapper "${unionfs_fuse}" -o relaxed_permissions,cow,noatime "${overlayfs_dir}"/up=RW:"${mount_point}"=RO "${overlayfs_dir}"/merged
|
||||||
else
|
else
|
||||||
echo "unionfs-fuse not found"
|
echo "unionfs-fuse not found"
|
||||||
return 1
|
return 1
|
||||||
|
|
Loading…
Reference in a new issue