1.4
to 1.5
The way snapshots are referenced in the restore
and prune
commands has been changed. Before they were referenced by the path. Now every backup is tagged and those tags are then referenced in the cli. This means that when running restore and forget commands old backups are not taken into account anymore.
version: 2
at the root.dir: /some/dir
in the options object.volume:
anymore, rather you have to set the type: volume
in the location config.See detailed instructions below.
1linkversion: 2 # Added
2link
3linkbackends:
4link # ...
Since 1.5
multiple sources for a location are possible.
For this reason, while before hooks where executed in the folder of the source, now they are executed in the directory of the config .autorestic.yaml
.
You can overwrite this behavior with the new dir
option in the hook section of the config.
1linklocations:
2link l1:
3link # ...
4link from: /foo/bar
5link hooks:
6link dir: /foo/bar
7link before: pwd
The syntax with docker volumes has changed and needs to be adjusted.
1link# Before
2linklocations:
3link foo:
4link from: volume:my-data
1link# After
2linklocations:
3link foo:
4link from: my-data
5link type: volume
Home Quick Start Installation Configuration Upgrade