mirror of
https://github.com/borgbase/ansible-role-borgbackup.git
synced 2024-11-19 19:07:42 +01:00
Add RHEL9 support, fix empty exclude option (#92)
This commit is contained in:
parent
4e376b4442
commit
bb5b6afd4c
@ -3,6 +3,7 @@ borg_encryption_passphrase: ''
|
|||||||
borg_exclude_patterns: []
|
borg_exclude_patterns: []
|
||||||
borgmatic_config_name: config.yaml
|
borgmatic_config_name: config.yaml
|
||||||
borgmatic_large_repo: true
|
borgmatic_large_repo: true
|
||||||
|
borgmatic_hooks: []
|
||||||
borgmatic_failure_command:
|
borgmatic_failure_command:
|
||||||
- echo "`date` - Error while creating a backup."
|
- echo "`date` - Error while creating a backup."
|
||||||
borgmatic_before_backup_command:
|
borgmatic_before_backup_command:
|
||||||
@ -15,7 +16,6 @@ borgmatic_check_last: 3
|
|||||||
borgmatic_store_atime: true
|
borgmatic_store_atime: true
|
||||||
borgmatic_store_ctime: true
|
borgmatic_store_ctime: true
|
||||||
borgmatic_relocated_repo_access_is_ok: false
|
borgmatic_relocated_repo_access_is_ok: false
|
||||||
borgmatic_hooks: []
|
|
||||||
borg_one_file_system: true
|
borg_one_file_system: true
|
||||||
borg_exclude_from: []
|
borg_exclude_from: []
|
||||||
borg_encryption_passcommand: false
|
borg_encryption_passcommand: false
|
||||||
|
@ -31,3 +31,9 @@
|
|||||||
keep_daily: 7
|
keep_daily: 7
|
||||||
keep_weekly: 4
|
keep_weekly: 4
|
||||||
keep_monthly: 6
|
keep_monthly: 6
|
||||||
|
|
||||||
|
post_tasks:
|
||||||
|
- name: Install yamllint for checking config file
|
||||||
|
pip:
|
||||||
|
name: yamllint
|
||||||
|
executable: pip3
|
||||||
|
@ -8,14 +8,12 @@ platforms:
|
|||||||
image: archlinux:latest
|
image: archlinux:latest
|
||||||
- name: centos-7
|
- name: centos-7
|
||||||
image: centos:7
|
image: centos:7
|
||||||
- name: centos-8
|
- name: almalinux-8
|
||||||
image: centos:8
|
image: almalinux:8
|
||||||
- name: fedora-latest
|
- name: fedora-latest
|
||||||
image: fedora:latest
|
image: fedora:latest
|
||||||
- name: debian-bullseye
|
- name: debian-bullseye
|
||||||
image: debian:bullseye
|
image: debian:bullseye
|
||||||
- name: debian-buster
|
|
||||||
image: debian:buster
|
|
||||||
- name: ubuntu-bionic
|
- name: ubuntu-bionic
|
||||||
image: ubuntu:bionic
|
image: ubuntu:bionic
|
||||||
- name: ubuntu-latest
|
- name: ubuntu-latest
|
||||||
|
@ -2,6 +2,12 @@
|
|||||||
- name: Verify
|
- name: Verify
|
||||||
hosts: all
|
hosts: all
|
||||||
tasks:
|
tasks:
|
||||||
- name: Example assertion
|
- name: Ensure Borgmatic is installed correctly
|
||||||
assert:
|
command: borgmatic --version
|
||||||
that: true
|
|
||||||
|
- name: Ensure Borg is installed correctly
|
||||||
|
command: borgmatic borg --version
|
||||||
|
|
||||||
|
- name: Ensure produced YAML is valid
|
||||||
|
command: |
|
||||||
|
yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" /etc/borgmatic/config.yaml
|
||||||
|
@ -82,14 +82,14 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
when: create_repo
|
when: create_repo
|
||||||
|
|
||||||
- name: Ensures /etc/borgmatic exists
|
- name: Ensure /etc/borgmatic exists
|
||||||
file:
|
file:
|
||||||
path: /etc/borgmatic
|
path: /etc/borgmatic
|
||||||
state: directory
|
state: directory
|
||||||
mode: 0700
|
mode: 0700
|
||||||
owner: root
|
owner: root
|
||||||
|
|
||||||
- name: Add Borgmatic Configuration
|
- name: Add Borgmatic configuration
|
||||||
template:
|
template:
|
||||||
src: config.yaml.j2
|
src: config.yaml.j2
|
||||||
dest: "/etc/borgmatic/{{ borgmatic_config_name }}"
|
dest: "/etc/borgmatic/{{ borgmatic_config_name }}"
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#jinja2: lstrip_blocks: "True", trim_blocks: "True"
|
#jinja2: lstrip_blocks: "True", trim_blocks: "True"
|
||||||
|
---
|
||||||
# Full config: https://torsion.org/borgmatic/docs/reference/config.yaml
|
# Full config: https://torsion.org/borgmatic/docs/reference/config.yaml
|
||||||
location:
|
location:
|
||||||
source_directories:
|
source_directories:
|
||||||
@ -23,7 +24,7 @@ location:
|
|||||||
# Store ctime into archive.
|
# Store ctime into archive.
|
||||||
ctime: {{ borgmatic_store_ctime }}
|
ctime: {{ borgmatic_store_ctime }}
|
||||||
|
|
||||||
{% if borg_exclude_patterns|length %}
|
{% if borg_exclude_patterns %}
|
||||||
# Any paths matching these patterns are excluded from backups. Globs and tildes
|
# Any paths matching these patterns are excluded from backups. Globs and tildes
|
||||||
# are expanded. See the output of "borg help patterns" for more details.
|
# are expanded. See the output of "borg help patterns" for more details.
|
||||||
exclude_patterns:
|
exclude_patterns:
|
||||||
@ -31,8 +32,7 @@ location:
|
|||||||
- '{{ dir }}'
|
- '{{ dir }}'
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if borg_exclude_from %}
|
||||||
{% if borg_exclude_from|length %}
|
|
||||||
# Read exclude patterns from one or more separate named files, one pattern per
|
# Read exclude patterns from one or more separate named files, one pattern per
|
||||||
# line. See the output of "borg help patterns" for more details.
|
# line. See the output of "borg help patterns" for more details.
|
||||||
exclude_from:
|
exclude_from:
|
||||||
@ -196,5 +196,6 @@ hooks:
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% for hook in borgmatic_hooks %}
|
{% for hook in borgmatic_hooks %}
|
||||||
{{ hook }}: {{ borgmatic_hooks[hook] }}
|
{{ hook }}:
|
||||||
|
{{ borgmatic_hooks[hook] | to_nice_yaml(indent=2) | trim | indent(8) }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
22
vars/RedHat-9.yml
Normal file
22
vars/RedHat-9.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
borg_packages:
|
||||||
|
- libacl-devel
|
||||||
|
- libacl
|
||||||
|
- gcc
|
||||||
|
- gcc-c++
|
||||||
|
- openssl-devel
|
||||||
|
- python3-pip
|
||||||
|
- python3-wheel
|
||||||
|
- python3-devel
|
||||||
|
- python3-setuptools
|
||||||
|
- python3-virtualenv
|
||||||
|
- openssh-clients
|
||||||
|
- cronie
|
||||||
|
|
||||||
|
python_bin: python3
|
||||||
|
pip_bin: pip3
|
||||||
|
|
||||||
|
borg_python_packages:
|
||||||
|
- cython
|
||||||
|
- borgbackup
|
||||||
|
- borgmatic
|
Loading…
Reference in New Issue
Block a user