From d88695b67d1f65f39d55158aefa07b0d20026e9f Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Sun, 21 Feb 2016 15:29:45 -0500 Subject: [PATCH] Add firewall rule for schlupp --- site-cookbooks/kosmos-hubot/recipes/default.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/site-cookbooks/kosmos-hubot/recipes/default.rb b/site-cookbooks/kosmos-hubot/recipes/default.rb index 40b524a..5bc99ac 100644 --- a/site-cookbooks/kosmos-hubot/recipes/default.rb +++ b/site-cookbooks/kosmos-hubot/recipes/default.rb @@ -7,12 +7,18 @@ # All rights reserved - Do Not Redistribute # -firewall_rule 'hubot_express' do +firewall_rule 'hubot_express_hal8000' do port 8080 protocol :tcp command :allow end +firewall_rule 'hubot_express_schlupp' do + port 8081 + protocol :tcp + command :allow +end + include_recipe "kosmos-nodejs" include_recipe "kosmos-redis"