Compare commits

...

2 commits

Author SHA1 Message Date
fe86e4ea53
Enforcing kmod removal 2025-02-26 06:23:01 -07:00
d8d3bcc558
Fixing comment 2025-02-21 16:39:37 -07:00
3 changed files with 20 additions and 4 deletions

View file

@ -4,7 +4,10 @@
zfs:
hosts:
srv1:
ansible_host: 10.10.10.14
ansible_host: 10.10.2.128
vars:
ansible_user: ansible
ansible_user: tyler
zfs_cockpit: false
zfs_testing: true

View file

@ -1,5 +1,5 @@
---
# file: roles/base/handlers/main.yml
# file: roles/zfs/handlers/main.yml
- name: Reboot Host
reboot:

View file

@ -18,6 +18,19 @@
state: latest
disable_gpg_check: True
- name: Disable kmod zfs
community.general.dnf_config_manager:
name: zfs-kmod
state: disabled
register: zfs_kmod_results
- name: Uninstall kmod ZFS
package:
name: zfs
state: absent
register: zfs_install
when: zfs_kmod_results.changed
- name: Enable ZFS testing package
community.general.dnf_config_manager:
name: zfs-testing
@ -67,4 +80,4 @@
state: started
enabled: yes
when: zfs_cockpit