20 lines
333 B
Ruby
20 lines
333 B
Ruby
#
|
|
# Cookbook Name:: kosmos-ipfs
|
|
# Recipe:: cluster
|
|
#
|
|
# Copyright 2018, Kosmos
|
|
#
|
|
# All rights reserved - Do Not Redistribute
|
|
#
|
|
|
|
include_recipe "ipfs::cluster"
|
|
|
|
unless node.chef_environment == "development"
|
|
include_recipe "firewall"
|
|
firewall_rule 'ipfs_cluster' do
|
|
port 9096
|
|
protocol :tcp
|
|
command :allow
|
|
end
|
|
end
|