dont enable ufw on newer hosts

This commit is contained in:
Erik Bergström 2023-07-05 13:27:43 +02:00
parent ebb2865ff4
commit 261c7831fd
No known key found for this signature in database
GPG key ID: 49A4251C96E0A9D4

View file

@ -35,7 +35,15 @@ class common {
include sunet::tools
include sunet::motd
include sunet::ntp
include ufw
if $::sunet_nftables_opt_in != 'yes' and ! ( $::operatingsystem == 'Ubuntu' and versioncmp($::operatingsystemrelease, '22.04') >= 0 ) {
warning('Enabling UFW')
include ufw
} else {
warning('Enabling nftables')
ensure_resource ('class','sunet::nftables::init', { })
}
include apt
include apparmor
package {'jq': ensure => 'latest'}