2021-11-30 13:44:54 +01:00
|
|
|
---
|
2022-04-01 18:06:15 +02:00
|
|
|
- name: install packages
|
2021-11-30 13:44:54 +01:00
|
|
|
become: true
|
|
|
|
ansible.builtin.package:
|
|
|
|
name:
|
2022-04-01 18:06:15 +02:00
|
|
|
- sanoid
|
2021-11-30 13:44:54 +01:00
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Generate Sanoid Configuration
|
|
|
|
become: true
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: sanoid.conf.j2
|
|
|
|
dest: /etc/sanoid/sanoid.conf
|
2022-04-01 18:12:09 +02:00
|
|
|
owner: root
|
|
|
|
group: root
|
2021-11-30 13:44:54 +01:00
|
|
|
mode: 0644
|
2022-04-01 18:23:01 +02:00
|
|
|
|
2022-04-01 18:24:34 +02:00
|
|
|
- name: template sanoid_mail.service
|
|
|
|
become: yes
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: sanoid_mail.service.j2
|
|
|
|
dest: /etc/systemd/system/sanoid_mail.service
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
notify:
|
|
|
|
- systemctl daemon-reload
|
2022-04-01 18:23:01 +02:00
|
|
|
|
2022-04-01 18:24:34 +02:00
|
|
|
|
|
|
|
- name: add sanoid_mail.service to sanoid.service
|
2022-04-01 18:23:01 +02:00
|
|
|
become: true
|
|
|
|
community.general.ini_file:
|
|
|
|
path: "/ets/systemd/system/{{ item }}"
|
|
|
|
section: Unit
|
|
|
|
state: present
|
|
|
|
no_extra_spaces: no
|
|
|
|
option: OnFailure
|
|
|
|
value: sanoid_mail.service
|
|
|
|
loop:
|
|
|
|
- sanoid.service
|
|
|
|
- sanoid-prune.service
|
2022-04-01 18:27:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# collections in meta?
|
|
|
|
# doku?
|