blob: 3c67715922021fef15aa0aefde3d019bee2af287 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
template "/tmp/create_cassandra_user.sh" do
source "create_cassandra_user.sh.erb"
sensitive true
mode 0755
variables({
:cassandra_ip => node['Nodes']['CS'].first,
:cassandra_port => node['cassandra']['cassandra_port'],
:cassandra_pwd => ENV['CS_PASSWORD'],
:sdc_usr => ENV['SDC_USER'],
:sdc_pwd => ENV['SDC_PASSWORD']
})
end
execute "create-sdc-user" do
command "/tmp/create_cassandra_user.sh"
cwd "/tmp/"
action :run
end
|