diff options
author | Dave Reisner <d@falconindy.com> | 2016-08-21 10:56:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-21 10:56:10 -0400 |
commit | d63c21a99a7d658a3f23845bf03b5f2147c67d5b (patch) | |
tree | f5fa9bd30d158f1b4c1e9551f1c8710fe6712ce6 | |
parent | 8248834aa0e56499073b8883c1b909d699c5e69e (diff) | |
parent | d1684d80f9729f3da6906629244d9f5e9e6be86c (diff) | |
download | squashfu-d63c21a99a7d658a3f23845bf03b5f2147c67d5b.tar.gz |
Merge pull request #3 from gnpar/fix_resquash
Fix information loss on voluntary resquash
-rwxr-xr-x | squashfu | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -42,6 +42,7 @@ create_new_squash () { # Determine oldest $1 bins and mount them with the current squash local old_bins=($(sort -n -r -t: -k2 "$BINVENTORY" | tail -$1 | cut -d: -f1)) + mountpoint -q "$SQUASH_MOUNT" || mount_squash mount_union_with_bins ${old_bins[@]} info "Merging old incrementals" |