Browse Source

Fedora: Install kernel-modules

Necessary module for gluster is not installed by default
in fedora.

This commit ensures the proper package is installed.
Michael Gugino 6 years ago
parent
commit
89ad0e35e7
1 changed files with 4 additions and 0 deletions
  1. 4 0
      roles/openshift_storage_glusterfs/tasks/kernel_modules.yml

+ 4 - 0
roles/openshift_storage_glusterfs/tasks/kernel_modules.yml

@@ -5,6 +5,10 @@
     dest: /etc/modules-load.d/glusterfs.conf
   register: km
 
+- name: Install kernel modules package on Fedora
+  shell: "dnf install kernel-modules-$(uname -r) -y"
+  when: ansible_distribution == "Fedora"
+
 - name: load kernel modules
   systemd:
     name: systemd-modules-load.service