aboutsummaryrefslogtreecommitdiffstats
path: root/boot/robot/vm_config2robot.sh
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-07-30 14:12:49 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-07-30 14:49:13 -0700
commit80237668597de035fd9788ea95786bb0bda68a02 (patch)
tree715bd1931e43c238e4bb356929718fcd0ffe63c4 /boot/robot/vm_config2robot.sh
parent75b2c58811687602c1dab5cf2a69b2e94599bcee (diff)
Remove demo, testuite/properties repos in robot VM
No longer clone demo and testsuite/properties repos in robot VM. Instead, use demo repo content within testsuite container, and pass properties directly from heat template boot/ directory. Change-Id: I9e472f9b6cea47dc2faebd091d95be9e89aff667 Issue-ID: INT-605 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'boot/robot/vm_config2robot.sh')
-rwxr-xr-xboot/robot/vm_config2robot.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/boot/robot/vm_config2robot.sh b/boot/robot/vm_config2robot.sh
new file mode 100755
index 00000000..c50fa5f4
--- /dev/null
+++ b/boot/robot/vm_config2robot.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+#
+# Make vm1_robot config available to robot
+#
+CONFIG=/opt/config
+PROPERTIES=/opt/eteshare/config/vm_properties.py
+GLOBAL_VM_PROPERTIES="# File generated from /opt/config\n#\n"
+HASH="GLOBAL_INJECTED_PROPERTIES={"
+COMMA=""
+for f in `ls $CONFIG/*.txt`;
+do
+ VALUE=`cat $f`
+ NAME=${f%.*}
+ NAME=${NAME##*/}
+ NAME=${NAME^^}
+ GLOBAL_VM_PROPERTIES=$"${GLOBAL_VM_PROPERTIES}GLOBAL_INJECTED_$NAME = \"$VALUE\"\n"
+ HASH=$"${HASH}${COMMA}\n\"GLOBAL_INJECTED_$NAME\" : \"$VALUE\""
+ COMMA=","
+done
+HASH="${HASH}}\n"
+GLOBAL_VM_PROPERTIES="${GLOBAL_VM_PROPERTIES}\n${HASH}"
+GLOBAL_VM_PROPERTIES=${GLOBAL_VM_PROPERTIES}
+echo -e $GLOBAL_VM_PROPERTIES > $PROPERTIES