ansible-borgbackup/README.md

70 lines
2.4 KiB
Markdown
Raw Normal View History

2017-09-07 18:35:01 +00:00
# Borg backup role
2017-10-01 17:51:38 +00:00
This role installs Borg backup on borgbackup\_servers and clients. The role contains a wrapper-script 'borg-backup' to ease the usage on the client. Supported options include borg-backup info | init | list | backup | mount. Automysqlbackup will run as pre-backup command if it's installed.
2017-09-07 18:35:01 +00:00
The role supports both self hosted and rsync.net as Borg server.
2017-10-01 17:24:50 +00:00
It's possible to configure append-only repositories to secure the backups against deletion from the client.
2017-09-07 18:35:01 +00:00
## Required variables
2017-10-01 17:51:38 +00:00
Define a group borgbackup\_servers in your inventory with one or multiple hosts. The group borgbackup\_management is only necessary if you want to enable append-only mode and prune the backups from a secured hosts.
2017-09-07 18:35:01 +00:00
```
2017-10-01 17:51:38 +00:00
[borgbackup_servers]
2017-09-07 18:35:01 +00:00
backup1.fiaas.co
2017-10-01 17:24:50 +00:00
[borgbackup_management]
supersecurehost
2017-09-07 18:35:01 +00:00
```
2017-10-01 17:51:38 +00:00
Define group- or hostvars for your backup endpoints and retention:
2017-09-07 18:35:01 +00:00
```
2017-10-01 17:51:38 +00:00
borgbackup_servers:
2017-09-07 18:35:01 +00:00
- fqdn: backup1.fiaas.co
user: borgbackup
type: normal
home: /backup/
pool: repos
options: ""
- fqdn: yourhost.rsync.net
user: userid
type: rsync.net
home: ""
pool: repos
options: "--remote-path=borg1"
2017-10-01 17:51:38 +00:00
borgbackup_retention:
hourly: 12
daily: 7
weekly: 4
monthly: 6
yearly: 1
2017-09-07 18:35:01 +00:00
```
*WARNING: the trailing / in item.home is required.*
Define a borg\_passphrase for every host.
host\_vars\client1:
```
2017-10-01 11:05:59 +00:00
borgbackup_passphrase: Ahl9EiNohr5koosh1Wohs3Shoo3ooZ6p
2017-09-07 18:35:01 +00:00
```
2017-10-01 18:01:19 +00:00
Per default the role creates a cronjob in /etc/cron.d/borg-backup running as root every day on a random hour between 0 and 5am on a random minute. Override the defaults if necessary:
```
borgbackup_cron_user: root
borgbackup_cron_day: "*"
borgbackup_cron_hour: "{{ 59|random }}"
borgbackup_cron_minute: "{{ 5|random }}"
```
2017-10-01 17:24:50 +00:00
Set borgbackup\_appendonly: True in host or group vars if you want append-only repositories. In that case it's possible to define a hostname in borgbackup\_management\_station where a borg prune script will be configured.
2017-09-07 18:35:01 +00:00
*Make sure to check the configured defaults for this role, which contains the list of default locations being backed up in backup_include.* Override this in your inventory where required.
## Usage
Configure Borg on the server and on a client:
```
2017-09-12 18:54:29 +00:00
ansible-playbook -i inventory/test backup.yml -l backup1.fiaas.co
ansible-playbook -i inventory/test backup.yml -l client1.fiaas.co
2017-09-07 18:35:01 +00:00
```
## Further reading
https://borgbackup.readthedocs.io/en/stable/