summaryrefslogtreecommitdiff
path: root/roles/zfs/tasks/main.yml
blob: 478a25dd78495e63779bcbbe1f9d870c463d4dfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
## TODO: @debian: make sure contrib repo is added

- name: install zfs packages
  apt:
    name:
    - zfs-dkms
    - zfsutils-linux
    state: present

- name: check if module is available for the currently running kernel
  command: modprobe --dry-run zfs
  check_mode: no
  register: zfs_module_available
  failed_when: false
  changed_when: false

- name: rebuild zfs module
  when: zfs_module_available.rc != 0
  command: dpkg-reconfigure zfs-dkms

- name: check again if module is available for the currently running kernel
  when: zfs_module_available.rc != 0
  command: modprobe --dry-run zfs
  check_mode: no
  changed_when: false