Sebastian Kippe b9775a26e4
Rename sockethub firewall recipe
Not just used internally anymore.
2022-02-27 13:09:42 -06:00

15 lines
273 B
Ruby

#
# Cookbook Name:: sockethub
# Recipe:: firewall
#
unless node.chef_environment == "development"
include_recipe "kosmos-base::firewall"
firewall_rule 'sockethub' do
port node['sockethub']['external_port'].to_i
protocol :tcp
command :allow
end
end