Install ZFS on home server 🎉

This commit is contained in:
Jake Howard
2020-08-19 21:34:23 +01:00
parent a5aa21429c
commit a2e021ac43
2 changed files with 20 additions and 2 deletions

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