Initial Commit w/ Host Playbooks

This commit is contained in:
2024-02-06 12:36:51 -08:00
commit 4351c6803b
9 changed files with 346 additions and 0 deletions

16
host_init/1-zfs.yml Normal file
View File

@@ -0,0 +1,16 @@
- name: Install ZFS on Alpine Linux
hosts: all
tasks:
- name: Install ZFS packages
community.general.apk:
name: "{{ item }}"
state: present
with_items:
- zfs
- name: Load ZFS kernel module
community.general.modprobe:
name: zfs
state: present
persistent: present