ansible-role-borgbackup/tasks/main.yml

36 lines
961 B
YAML
Raw Normal View History

2023-04-08 19:17:38 +02:00
---
2023-04-08 21:07:04 +02:00
- name: Install Packages
ansible.builtin.import_tasks: packages.yml
tags: packages
2023-04-08 22:33:17 +02:00
- name: Create SSH key
ansible.builtin.import_tasks: ssh.yml
tags: ssh
2023-04-08 19:17:38 +02:00
2023-04-08 21:07:04 +02:00
- name: Setup borgbase backup
ansible.builtin.import_tasks: borgbase.yml
when: borgbase is defined and borgbase
tags: borgbase
2023-04-08 19:17:38 +02:00
2023-04-08 21:07:04 +02:00
- name: Copy borgmatic configuration
ansible.builtin.template:
src: config.yaml.j2
dest: "/etc/borgmatic/{{ borgmatic_config_name }}"
mode: "0600"
2023-04-08 19:17:38 +02:00
2023-04-08 21:07:04 +02:00
- name: Add single Cron job for borgmatic
ansible.builtin.cron:
name: "{{ borgmatic_timer_cron_name }}"
hour: "{{ borgmatic_timer_hour }}"
minute: "{{ borgmatic_timer_minute }}"
user: "{{ borg_user }}"
cron_file: "{{ borgmatic_timer_cron_name }}"
job: "borgmatic -c /etc/borgmatic/{{ borgmatic_config_name }}"
2023-04-08 21:52:23 +02:00
- name: Init repo
ansible.builtin.expect:
2023-04-08 21:54:51 +02:00
command: "borgmatic init -e {{ borg_repo_key }}"
2023-04-08 21:53:16 +02:00
responses:
^.*want to continue connecting.*$: "yes"
2023-04-08 22:33:17 +02:00