infrastructure/ansible/roles/zfs/tasks/sanoid.yml

64 lines
1.2 KiB
YAML
Raw Normal View History

- name: Install dependencies for Arch
2020-07-26 18:03:09 +01:00
package:
name:
loop:
- perl
- perl-capture-tiny
- perl-config-inifiles
- pv
- lzop
when: ansible_os_family == 'Archlinux'
2020-07-26 18:03:09 +01:00
become: true
- name: Download
git:
repo: https://github.com/jimsalterjrs/sanoid.git
dest: /opt/sanoid
version: v2.0.3
become: true
- name: Create config directory
file:
path: /etc/sanoid
state: directory
become: true
- name: Install default config
file:
src: /opt/sanoid/sanoid.defaults.conf
dest: /etc/sanoid/sanoid.defaults.conf
state: link
become: true
- name: Install executables
file:
src: /opt/sanoid/{{ item }}
dest: /usr/local/sbin/{{ item }}
state: link
loop:
- sanoid
- syncoid
- findoid
- sleepymutex
become: true
- name: Install config
2020-07-26 18:03:09 +01:00
template:
src: files/sanoid.conf
dest: /etc/sanoid/sanoid.conf
become: true
- name: Install snapshot job
cron:
name: sanoid snapshot
special_time: hourly
job: TZ=UTC sanoid --take-snapshots --verbose
become: true
- name: Install prune job
2020-07-26 18:03:09 +01:00
cron:
name: sanoid prune
2020-07-26 18:03:09 +01:00
special_time: hourly
job: TZ=UTC sanoid --prune-snapshots --verbose
become: true