This repository was archived by the owner on Jan 24, 2019. It is now read-only.

Description
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?