Initial Commit w/ Host Playbooks
This commit is contained in:
16
host_init/1-zfs.yml
Normal file
16
host_init/1-zfs.yml
Normal 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
|
||||
Reference in New Issue
Block a user