cryptoraid

main
Ricard Illa 2022-09-27 10:27:00 +02:00
parent 63ae46c175
commit dd83aabeb0
3 changed files with 32 additions and 2 deletions

View File

@ -21,6 +21,14 @@
- gopass
- woodpecker
- name: cryptoraid
hosts:
- suricata
become: true
roles:
- cryptoraid
tags: raid
- name: mounts
hosts:
- suricata
@ -34,7 +42,6 @@
become: true
roles:
- usercfg
tags: test
- name: pi_fan_hwpwm
hosts:
@ -81,7 +88,6 @@
- narwhal
roles:
- gopass
tags: gopass
- name: lbu commit
hosts:

View File

@ -0,0 +1,20 @@
---
- name: install packages
apk:
name:
- gptfdisk
- sgdisk
- cryptsetup
- btrfs-progs
- zstd
- name: load btrfs module
modprobe:
name: btrfs
state: present
- name: btrfs module on startup
lineinfile:
path: /etc/modules
line: btrfs
insertafter: EOF

View File

@ -0,0 +1,4 @@
---
- name: alpine setup
include_tasks: alpine.yml
when: ansible_distribution == "Alpine"