diff options
author | Michael Lando <ml636r@att.com> | 2017-06-12 14:49:31 +0300 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2017-06-12 14:52:36 +0300 |
commit | 6e1710d3c61ef676ab9f14b9298b8c73e909ff67 (patch) | |
tree | 7f767dce25e9172be81e9ec0dbde792242040c2a /sdc-os-chef | |
parent | 5f4be2fbc1e6fe09b53ce96e5204bf2b4ad9f472 (diff) |
[SDC] fix wrong variable in the chef script
Change-Id: I43178b4bcde5abfae49891a9905a8aaba7807b62
Signed-off-by: Michael Lando <ml636r@att.com>
Diffstat (limited to 'sdc-os-chef')
-rw-r--r-- | sdc-os-chef/sdc-cassandra/chef-repo/cookbooks/cassandra-actions/recipes/07-importComformance.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdc-os-chef/sdc-cassandra/chef-repo/cookbooks/cassandra-actions/recipes/07-importComformance.rb b/sdc-os-chef/sdc-cassandra/chef-repo/cookbooks/cassandra-actions/recipes/07-importComformance.rb index 0cc0434950..7c902ea858 100644 --- a/sdc-os-chef/sdc-cassandra/chef-repo/cookbooks/cassandra-actions/recipes/07-importComformance.rb +++ b/sdc-os-chef/sdc-cassandra/chef-repo/cookbooks/cassandra-actions/recipes/07-importComformance.rb @@ -28,7 +28,7 @@ bash "import-Comformance" do cd /tmp/sdctool/scripts /bin/chmod +x sdcSchemaFileImport.sh echo "execute /tmp/sdctool/scripts/sdcSchemaFileImport.sh $conf_dir/$schema_file_name #{cl_release} $cl_version $conf_dir " - ./sdcSchemaFileImport.sh ${conf_dir}/${schema_file_name} $cl_release ${cl_version} ${conf_dir} + ./sdcSchemaFileImport.sh ${conf_dir}/${schema_file_name} #{cl_release} ${cl_version} ${conf_dir} EOH end |