ansible-role-borgbackup/tasks/main.yml

125 lines
3.5 KiB
YAML
Raw Normal View History

2018-10-06 14:04:20 +02:00
---
- name: Include OS-specific variables
include_vars: "{{ item }}"
with_first_found:
- "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"
- name: Run OS-specific setup
include: "{{ item }}"
with_first_found:
- "{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_os_family }}.yml"
2018-10-06 14:04:20 +02:00
- name: Install required System Packages
package:
2018-10-06 14:04:20 +02:00
pkg: "{{ item }}"
state: present
with_items: "{{ borg_packages }}"
2018-10-06 14:04:20 +02:00
- name: Update setuptools if needed
tags: skip_ansible_lint
pip:
name: setuptools
state: latest
executable: "{{ pip_bin }}"
2018-10-06 14:04:20 +02:00
- name: Install required Python Packages
pip:
name: "{{ borg_python_packages }}"
executable: "{{ pip_bin }}"
2018-10-06 14:04:20 +02:00
- name: Ensure root has SSH key.
user:
name: "root"
generate_ssh_key: yes
ssh_key_file: "{{ ssh_key_file }}"
2018-10-06 14:04:20 +02:00
ssh_key_type: ed25519
register: root_user
- debug:
var: root_user['ssh_public_key']
- name: Create new repository for server
borgbase:
repository_name: "{{ bb_repo_name }}"
token: "{{ bb_token }}"
new_ssh_key: "{{ bb_new_sshkey }}"
ssh_key: "{{ bb_sshkey }}"
append_only: "{{ bb_append }}"
quota_enable: "{{ bb_quota }}"
quota: "{{ bb_quota_size }}"
region: "{{ bb_region }}"
alertdays: "{{ bb_alertdays }}"
delegate_to: localhost
become: no
register: repo_creation
when: create_repo
- name: Set Repository Fact
set_fact:
borg_repository: "{{ repo_creation['data']['repoPath'] }}"
when: create_repo
- name: Ensures /etc/borgmatic exists
2018-10-06 14:04:20 +02:00
file:
path: /etc/borgmatic
2018-10-06 14:04:20 +02:00
state: directory
mode: 0700
owner: root
- name: Add Borgmatic Configuration
template:
src: config.yaml.j2
dest: "/etc/borgmatic/{{ borgmatic_config_name }}"
2018-10-06 14:04:20 +02:00
mode: 0600
2019-05-15 06:44:10 +02:00
- name: Add cron-job for borgmatic (large repo, create and check separate)
tags: molecule-idempotence-notest
2019-05-15 06:44:10 +02:00
block:
- name: Add cron job for regular create and prune
cron:
2019-05-15 06:44:10 +02:00
name: "borgmatic"
hour: "{{ borgmatic_cron_hour }}"
minute: "{{ borgmatic_cron_minute }}"
2019-05-15 06:44:10 +02:00
user: "root"
cron_file: borgmatic
job: "/usr/local/bin/borgmatic -c /etc/borgmatic/{{ borgmatic_config_name }} --create --prune"
- name: Add cron job for infrequent checks
cron:
2019-05-15 06:44:10 +02:00
name: "borgmatic-check"
day: "{{ borgmatic_cron_checks_day }}"
hour: "{{ borgmatic_cron_checks_hour }}"
minute: "{{ borgmatic_cron_checks_minute }}"
2019-05-15 06:44:10 +02:00
user: "root"
cron_file: borgmatic
job: "/usr/local/bin/borgmatic -c /etc/borgmatic/{{ borgmatic_config_name }} --check"
when: borgmatic_large_repo
- name: Add cron-job for borgmatic (normal-sized repo)
tags: molecule-idempotence-notest
2019-05-15 06:44:10 +02:00
block:
- name: Add cron job for create, check and prune
cron:
2019-05-15 06:44:10 +02:00
name: "borgmatic"
hour: "{{ borgmatic_cron_hour }}"
minute: "{{ borgmatic_cron_minute }}"
2019-05-15 06:44:10 +02:00
user: "root"
cron_file: borgmatic
job: "/usr/local/bin/borgmatic"
- name: Ensure separate check cron job is absent
cron:
2019-05-15 06:44:10 +02:00
name: "borgmatic-check"
state: absent
when: not borgmatic_large_repo
2018-10-11 09:08:57 +02:00
- name: Set PATH for borgmatic cron job.
cron:
user: "root"
cron_file: borgmatic
name: PATH
env: yes
value: /usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin