ansible-borgbackup/tasks/borg-client.yml

85 lines
2.9 KiB
YAML
Raw Normal View History

2017-09-07 18:35:01 +00:00
---
- name: client | generate ssh key for this machine
2018-01-28 17:01:15 +00:00
user:
name: "{{ borgbackup_client_user }}"
2018-08-30 21:37:26 +00:00
generate_ssh_key: true
2018-01-28 17:01:15 +00:00
ssh_key_bits: 2048
ssh_key_file: "{{ borgbackup_ssh_key }}"
ssh_key_type: rsa
2017-09-07 18:35:01 +00:00
- name: client | fetch ssh-key
2017-11-12 14:02:50 +00:00
shell: "cat {{ borgbackup_ssh_key }}.pub"
2017-09-07 18:35:01 +00:00
register: sshkey
2018-08-30 21:37:26 +00:00
changed_when: false
2017-09-07 18:35:01 +00:00
- name: client | write passphrase
lineinfile:
2018-01-28 17:01:15 +00:00
dest: "~{{ borgbackup_client_user }}/.borg.passphrase"
2017-09-07 18:35:01 +00:00
state: "present"
2017-10-01 11:05:59 +00:00
line: 'export BORG_PASSPHRASE="{{ borgbackup_passphrase }}"'
2018-08-30 21:37:26 +00:00
create: true
2017-09-07 18:35:01 +00:00
2017-11-12 14:02:50 +00:00
- name: client | disable strict key checking for backup servers
blockinfile:
2018-01-28 17:01:15 +00:00
dest: "~{{ borgbackup_client_user }}/.ssh/config"
2018-08-30 21:37:26 +00:00
create: true
2017-11-12 14:02:50 +00:00
marker: "### {mark} ANSIBLE MANAGED BLOCK {{ item.fqdn }} ###"
content: |
Host {{ item.fqdn }}
StrictHostKeyChecking no
IdentityFile {{ borgbackup_ssh_key }}
2017-11-12 14:02:50 +00:00
{% if item.port is defined %}
Port {{ item.port }}
{% endif %}
with_items: "{{ borgbackup_servers }}"
2017-09-07 18:35:01 +00:00
- name: client | put non management sshpubkey on the normal backupserver
2017-09-07 18:35:01 +00:00
authorized_key:
user: "{{ item.user }}"
key: "{{ sshkey.stdout }}"
2017-10-01 17:24:50 +00:00
key_options: 'command="cd {{ item.home }}{{ item.pool }}/{{ inventory_hostname }};borg serve {% if borgbackup_appendonly %}--append-only {% endif %}--restrict-to-path {{ item.home }}/{{ item.pool }}/{{ inventory_hostname }}",no-port-forwarding,no-X11-forwarding,no-pty,no-agent-forwarding,no-user-rc'
2017-09-07 18:35:01 +00:00
delegate_to: "{{ item.fqdn }}"
when: inventory_hostname != borgbackup_management_station
2017-10-01 17:51:38 +00:00
with_items: "{{ borgbackup_servers }}"
2017-09-07 18:35:01 +00:00
- name: client | put management sshpubkey on backupservers, no appendonly nor path restriction
2017-09-07 18:35:01 +00:00
authorized_key:
user: "{{ item.user }}"
2017-09-07 18:35:01 +00:00
key: "{{ sshkey.stdout }}"
key_options: 'command="cd {{ item.home }}{{ item.pool }}/{{ inventory_hostname }};borg serve ",no-port-forwarding,no-X11-forwarding,no-pty,no-agent-forwarding,no-user-rc'
delegate_to: "{{ item.fqdn }}"
when: inventory_hostname == borgbackup_management_station
2017-10-01 17:51:38 +00:00
with_items: "{{ borgbackup_servers }}"
2017-09-07 18:35:01 +00:00
- name: client | put wrapper script
template:
src: "borg-backup.sh.j2"
dest: "/usr/local/bin/borg-backup"
owner: "{{ borgbackup_owner }}"
group: "{{ borgbackup_group }}"
2017-09-07 18:35:01 +00:00
mode: "0744"
- name: client | create backup-directory on backup server
shell: /usr/local/bin/borg-backup init
2018-01-28 19:33:29 +00:00
become_user: "{{ borgbackup_client_user }}"
2017-09-07 18:35:01 +00:00
register: backup_init
changed_when: "'Remember your passphrase' in backup_init.stderr"
- name: client | create backup cronjob
cron:
cron_file: "borg-backup"
2018-01-28 17:01:15 +00:00
user: "{{ borgbackup_client_user }}"
2017-09-07 18:35:01 +00:00
name: "borg-backup"
2017-10-01 18:01:19 +00:00
minute: "{{ borgbackup_cron_minute }}"
hour: "{{ borgbackup_cron_hour }}"
day: "{{ borgbackup_cron_day }}"
2017-09-07 18:35:01 +00:00
job: "/usr/local/bin/borg-backup backup"
- name: client | create log directory
file:
path: "/var/log/borgbackup"
state: "directory"
owner: "root"
group: "root"
mode: "0755"