Install ZFS on home server 🎉

This commit is contained in:
Jake Howard 2020-08-19 21:34:23 +01:00
parent a5aa21429c
commit a2e021ac43
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 20 additions and 2 deletions

View File

@ -28,6 +28,13 @@
- watchtower
- traefik
# ZFS Hosts
- hosts:
- walker
- intersect
roles:
- zfs
- hosts: intersect
roles:
- netdata
@ -43,5 +50,4 @@
- statping
- upload
- website
- zfs
- duplicati

View File

@ -1,6 +1,6 @@
- name: Install dependencies for Arch
package:
name:
name: "{{ item }}"
loop:
- perl
- perl-capture-tiny
@ -10,6 +10,18 @@
when: ansible_os_family == 'Archlinux'
become: true
- name: Install dependencies for Debian-based distros
package:
name: "{{ item }}"
loop:
- libcapture-tiny-perl
- libconfig-inifiles-perl
- pv
- lzop
- mbuffer
when: ansible_os_family == 'Debian'
become: true
- name: Download
git:
repo: https://github.com/jimsalterjrs/sanoid.git