# base fedora settings # # Fedora hosts share the RedHat-family base profiles (yum/dnf, crypto-policies, # firewalld); this class carries the handful of Fedora-specific bits. Kept # deliberately small so it can grow into workstation/laptop (e.g. sway) support # later without disturbing servers. class profiles::fedora::base { # Fedora manages interfaces through NetworkManager. Ensure it is enabled and # running (some minimal and cloud images ship it disabled). service { 'NetworkManager': ensure => running, enable => true, } }