Enforcing kmod removal
This commit is contained in:
parent
d8d3bcc558
commit
fe86e4ea53
1 changed files with 14 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue