summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Sullivan <bryan.sullivan@att.com>2018-02-06 20:13:37 -0500
committerBryan Sullivan <bryan.sullivan@att.com>2018-02-06 20:13:37 -0500
commit44fc619f3208c4c4571f57aeb5ae7da76f3a83ae (patch)
tree2a712a51dd5a02819b3c694031e896bdca6e5c39
parent818c0e952924d9e524a752b91bc0bb5134a247df (diff)
Fix anteater issue with use of /tmp
JIRA: MODELS-2 Change-Id: Ia6105f5b8e7c6cb32f70335cb833df372884722a Signed-off-by: Bryan Sullivan <bryan.sullivan@att.com>
-rw-r--r--tools/cloudify/k8s-cloudify.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/cloudify/k8s-cloudify.sh b/tools/cloudify/k8s-cloudify.sh
index 5a3ff1d..51d3558 100644
--- a/tools/cloudify/k8s-cloudify.sh
+++ b/tools/cloudify/k8s-cloudify.sh
@@ -150,7 +150,7 @@ function setup () {
if [[ "$USER" == "centos" ]]; then
# copy image to folder that qemu has access to, to avoid: ERROR Cannot access storage file '/home/centos/cloudify/cloudify-manager-community-17.9.21.qcow2' (as uid:107, gid:107): Permission denied
cp cloudify-manager-community-17.9.21.qcow2 ~/tmp/.
- img="/tmp/cloudify-manager-community-17.9.21.qcow2"
+ img="~/tmp/cloudify-manager-community-17.9.21.qcow2"
else
img="cloudify-manager-community-17.9.21.qcow2"
fi