23 lines
464 B
Ruby
23 lines
464 B
Ruby
#
|
|
# Cookbook Name:: kosmos-hubot
|
|
# Recipe:: default
|
|
#
|
|
# Copyright 2017-2018, Kosmos
|
|
#
|
|
|
|
unless node.chef_environment == "development"
|
|
include_recipe 'firewall'
|
|
firewall_rule 'hubot_express_hal8000_freenode' do
|
|
port 8080
|
|
protocol :tcp
|
|
command :allow
|
|
end
|
|
end
|
|
|
|
include_recipe "kosmos-nodejs"
|
|
include_recipe "kosmos-redis"
|
|
|
|
include_recipe "kosmos-hubot::_user"
|
|
include_recipe "kosmos-hubot::hal8000"
|
|
include_recipe "kosmos-hubot::botka_freenode"
|