Move RSKj firewall config to own recipe

This commit is contained in:
Basti 2021-10-22 14:02:41 +02:00
parent ce7a7d5f83
commit 83202747cf
Signed by untrusted user: basti
GPG Key ID: 9F88009D31D99C72
2 changed files with 8 additions and 7 deletions

View File

@ -0,0 +1,7 @@
include_recipe 'firewall'
firewall_rule 'rskj' do
port [4444,50505]
protocol :tcp
command :allow
end

View File

@ -30,10 +30,4 @@ service "rsk" do
action [:enable, :start]
end
include_recipe 'firewall'
firewall_rule 'rskj' do
port [4444,50505]
protocol :tcp
command :allow
end
include_recipe 'kosmos_rsk::firewall'