Skip to content

v0.9.0

Compare
Choose a tag to compare
@m3nu m3nu released this 20 Feb 10:50
· 25 commits to master since this release
29d0c5f

Breaking changes:

All hooks are now defined in a single variable borgmatic_hooks. The previous variables borgmatic_before_backup_command, borgmatic_after_backup_command and borgmatic_failure_command are no longer working and can be migrated to the new syntax like this:

borgmatic_hooks:
  before_backup:
  - echo "`date` - Starting backup."
  on_error:
  - echo "Error during prune/compact/create/check."

See here for all possible hooks, including database backups or health checks.

Other minor changes and bugfixes:

  • Add support for RHEL9 and variants, remove CentOS8 and Debian Buster
  • Support Archlinux. By @michalroxorpl (#79)
  • Fix setuptools version for Debian
  • Add Molecule verifiers and yamllint to ensure role installed OK