blob: c196ca7b942131e23c858dbddab4360e91ff341c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
interface = node['interfaces']['application']
application_host = ''
node['network']['interfaces'][interface][:addresses].each do | addr , details |
if details['family'] == ('inet')
application_host = addr
end
end
template "/var/lib/ready-probe.sh" do
source "ready-probe.sh.erb"
sensitive true
mode 0755
variables({
:cassandra_ip => application_host,
:cassandra_pwd => ENV['CS_PASSWORD']
})
end
|