Homelab/host_init/1-zfs.yml

17 lines
342 B
YAML
Raw Normal View History

2024-02-06 20:36:51 +00:00
- 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