diff options
author | Leonard Kugis <leonard@kug.is> | 2025-09-08 14:34:09 +0200 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2025-09-08 14:34:09 +0200 |
commit | 0064a703a1108aadb3e86d92dd93883dc33434bc (patch) | |
tree | 242f8ccb0fe55622ac60c8cc1237bd66939620a5 /squashfu.conf | |
parent | fbba0664b6c66f1e94209fac5743151bdfe7f542 (diff) | |
download | squashfu-0064a703a1108aadb3e86d92dd93883dc33434bc.tar.gz |
Using OverlayFS instead of AUFS.
Newer kernels do not support AUFS by default.
OverlayFS however is widely supported.
Same functionality can be archieved.
Diffstat (limited to 'squashfu.conf')
-rw-r--r-- | squashfu.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/squashfu.conf b/squashfu.conf index f15b83d..cfd6da1 100644 --- a/squashfu.conf +++ b/squashfu.conf @@ -20,6 +20,10 @@ BINS_DIR="${BKUP_ROOT}/.bins" SQUASH_MOUNT="${BKUP_ROOT}/ro" UNION_MOUNT="${BKUP_ROOT}/rw" +WORK_DIR="${WORK_DIR:-$BINS_DIR/.work}" +TMP_UPPER="${BINS_DIR}/.tmp_upper" +TMP_WORKDIR="${WORK_DIR}/.tmp_work" + # Cheezy name, important file. This is a catalog of your incrementals. # Bad things will happen if this file is corrupted or lost. BINVENTORY="/var/lib/squashfu.inv" |