diff --git a/manifests/fedora-coreos-base.yaml b/manifests/fedora-coreos-base.yaml index 33038d9286..495439f49c 100644 --- a/manifests/fedora-coreos-base.yaml +++ b/manifests/fedora-coreos-base.yaml @@ -63,20 +63,6 @@ postprocess: #!/usr/bin/env bash systemctl mask dnsmasq.service - # Fedora 37 adds the nvmf dracut module to the initrd, causing - # ext.config.files.dracut-executable to notice that the module puts a - # non-executable file in /usr/sbin. Dracut has been updated to fix the - # missing permission, and hopefully this can be removed for Fedora 38. - # https://github.com/coreos/fedora-coreos-tracker/issues/1155 - # https://github.com/dracutdevs/dracut/pull/1777 - - | - #!/usr/bin/env bash - set -xeuo pipefail - source /etc/os-release - if [ ${VERSION_ID} -le 37 ]; then - chmod +x /usr/lib/dracut/modules.d/95nvmf/nvmf-autoconnect.sh - fi - # Default to iptables-nft. Otherwise, legacy wins. We can drop this once/if we # remove iptables-legacy. This is needed because alternatives don't work # https://github.com/coreos/fedora-coreos-tracker/issues/677