diff options
author | Dan Radez <dradez@redhat.com> | 2016-09-19 15:06:43 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-09-20 14:24:17 -0400 |
commit | b6bda2fe154d067084a99733f42663252ff9b399 (patch) | |
tree | 17f614866d74c4c805373967cef0a837bf8c0ccc /lib/undercloud-functions.sh | |
parent | 58bc90d143303c1f9d4e9f174294f71dfa8303d6 (diff) |
Handling file loads and tmp dirs differently
Change-Id: I602279b30b035cfc667e4ee9b83905a638440abb
Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'lib/undercloud-functions.sh')
-rwxr-xr-x | lib/undercloud-functions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/undercloud-functions.sh b/lib/undercloud-functions.sh index d2ba6bca..ccf39c02 100755 --- a/lib/undercloud-functions.sh +++ b/lib/undercloud-functions.sh @@ -122,8 +122,8 @@ function configure_undercloud { echo "Copying configuration files to Undercloud" if [[ "$net_isolation_enabled" == "TRUE" ]]; then echo -e "${blue}Network Environment set for Deployment: ${reset}" - cat /tmp/network-environment.yaml - scp ${SSH_OPTIONS[@]} /tmp/network-environment.yaml "stack@$UNDERCLOUD": + cat $APEX_TMP_DIR/network-environment.yaml + scp ${SSH_OPTIONS[@]} $APEX_TMP_DIR/network-environment.yaml "stack@$UNDERCLOUD": # check for ODL L3/ONOS if [ "${deploy_options_array['sdn_l3']}" == 'True' ]; then |