Compare commits
2 commits
b736c5b50a
...
fe86e4ea53
Author | SHA1 | Date | |
---|---|---|---|
fe86e4ea53 | |||
d8d3bcc558 |
3 changed files with 20 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
# file: roles/base/handlers/main.yml
|
||||
# file: roles/zfs/handlers/main.yml
|
||||
|
||||
- name: Reboot Host
|
||||
reboot:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue