소스 검색

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: