23 lines
600 B
YAML
23 lines
600 B
YAML
|
- name: Create extra disk moint point
|
||
|
file:
|
||
|
path: "{{ kingston1tb_mount_point }}"
|
||
|
state: directory
|
||
|
- name: Mount extra disk
|
||
|
ansible.posix.mount:
|
||
|
path: "{{kingston1tb_mount_point }}"
|
||
|
src: "UUID={{ kingston1tb_uuid }}"
|
||
|
fstype: ext4
|
||
|
passno: 1
|
||
|
state: present
|
||
|
- name: Install borg
|
||
|
apt:
|
||
|
name: borgbackup
|
||
|
- name: Add Borg public key
|
||
|
authorized_key:
|
||
|
key: "ssh-ed25519 {{ borg_public_key }} root@max"
|
||
|
user: "{{ ansible_user_id }}"
|
||
|
- name: Create Borg repository
|
||
|
command:
|
||
|
cmd: "borg init -e none {{ backup_location }}"
|
||
|
creates: "{{ backup_location }}"
|