瀏覽代碼

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 6 年之前
父節點
當前提交
eb847dbb8c
共有 1 個文件被更改,包括 3 次插入1 次删除
  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: