-
That is, not comparing snapshots with each other. Would be nice to verify what changed before doing the backup. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 24 replies
-
This is not completely possibe. There are two posibilites:
To not backup but still see the changes, you can do a backup dry-run. If you also want to see, which files changed, use log-level debug: This however has the limitation that files which do not exist in the live system, but exist in the snapshot, are not shown at all..
Does one of these options suit your needs or would you like to have more features? |
Beta Was this translation helpful? Give feedback.
-
Note that with #305 merged, now |
Beta Was this translation helpful? Give feedback.
This is not completely possibe. There are two posibilites:
backup
command automatically compares the parent snapshot with the live filesystem. If you want to compare with an arbitrary snapshot, you can manually set the parent using the--parent
option.To not backup but still see the changes, you can do a backup dry-run. If you also want to see, which files changed, use log-level debug:
rustic --log-level debug backup -n ...
This however has the limitation that files which do not exist in the live system, but exist in the snapshot, are not shown at all..