Install ZFS on home server 🎉
This commit is contained in:
parent
a5aa21429c
commit
a2e021ac43
2 changed files with 20 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue