aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/recipes/3_import_Normatives.rb
blob: e9e44c0df9e43deea4dd52968168a25f298475e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
be_ip=node['Nodes'][:BE]

if node['disableHttp']
  protocol = "https"
  be_port = node['BE']['https_port']
  param="-i #{be_ip} -p #{be_port} --https"
else
  protocol = "http"
  be_port = node['BE']['http_port']
  param="-i #{be_ip} -p #{be_port}"
end

cookbook_file "/var/tmp/normatives.tar.gz" do
  source "normatives.tar.gz"
end

bash "executing-import_Normatives" do
  code <<-EOH
    set -ex

    cd /var/tmp/
    tar -xvf normatives.tar.gz
    
    # executing the normatives
    # add --debug to the sdcinit command to enable debug

    cd /var/tmp/normatives/import/tosca
    sdcinit #{param} > /var/lib/jetty/logs/init.log
    rc=$?
    if [[ $rc != 0 ]]; then exit $rc; fi

  EOH
  returns [0]
end