Explorar el Código

Ensure kernel-modules not installed on atomic

This commit ensures we don't attempt to dnf install
kernel modules on Fedora Atomic Host.
Michael Gugino hace 6 años
padre
commit
eb847dbb8c
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      roles/openshift_storage_glusterfs/tasks/kernel_modules.yml

+ 3 - 1
roles/openshift_storage_glusterfs/tasks/kernel_modules.yml

@@ -7,7 +7,9 @@
 
 - name: Install kernel modules package on Fedora
   shell: "dnf install kernel-modules-$(uname -r) -y"
-  when: ansible_distribution == "Fedora"
+  when:
+  - ansible_distribution == "Fedora"
+  - not (openshift_is_atomic | bool)
 
 - name: load kernel modules
   systemd: