This is a simple firewalld resource to make the seamless opening of firewall ports in standalone laptop (and other) environments easy.
10 lines
152 B
Plaintext
10 lines
152 B
Plaintext
firewalld "misc" { # name is irrelevant
|
|
services => [
|
|
"dhcp",
|
|
"tftp",
|
|
],
|
|
ports => ["4280/tcp",],
|
|
|
|
state => $const.res.firewalld.state.absent,
|
|
}
|