This commit ensures we don't attempt to dnf install kernel modules on Fedora Atomic Host.
@@ -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: