Procházet zdrojové kódy

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 před 6 roky
rodič
revize
eb847dbb8c

+ 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: