You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This creates a config file in /etc/firewalld/services on the node but the service is not applied. I.e. when doing firewall-cmd --list-services it doesn’t show. And a manual firewalld restart didn’t pick up this file either. I have to do the following to get it to allow the port:
I have cloned the git repo and used the following in my node config:
node testnode2 {
firewalld::service { 'testservice':
description => 'service',
ports => [{port => '65000', protocol => 'tcp',},],
}
}
This creates a config file in /etc/firewalld/services on the node but the service is not applied. I.e. when doing firewall-cmd --list-services it doesn’t show. And a manual firewalld restart didn’t pick up this file either. I have to do the following to get it to allow the port:
firewall-cmd --permanent --add-service=testservice
firewall-cmd --reload
Is this a config problem?