summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/congress/test-webapp/setup/install_congress_testserver_1.sh15
-rw-r--r--components/congress/test-webapp/setup/install_congress_testserver_2.sh6
-rw-r--r--components/congress/test-webapp/www/html/congress_translators.js4
3 files changed, 14 insertions, 11 deletions
diff --git a/components/congress/test-webapp/setup/install_congress_testserver_1.sh b/components/congress/test-webapp/setup/install_congress_testserver_1.sh
index 57a39e4..b69cf3f 100644
--- a/components/congress/test-webapp/setup/install_congress_testserver_1.sh
+++ b/components/congress/test-webapp/setup/install_congress_testserver_1.sh
@@ -21,21 +21,20 @@
# - Congress installed through install_congress_1.sh
# - ~/env.sh created as part of Congress install (install_congress_1.sh)
# How to use:
-# $ source install_congress_testserver_1.sh <controller_hostname> <user>
+# $ source install_congress_testserver_1.sh <controller_hostname>
# <controller_hostname> is the name of the controller node in MAAS
-# and <user> is the name of the account where you are installing this
# Create and Activate the Container
# Earlier versions of the JOID installer installed lxc and created local templates
# but now we have to get the ubuntu template from the controller
-if [ $# -lt 2 ]; then
- echo 1>&2 "$0: arguments required <controller_hostname> <user>"
+if [ $# -lt 1 ]; then
+ echo 1>&2 "$0: arguments required <controller_hostname>"
return 2
fi
-if [ $# -eq 3 ]; then
- if [ $3 == "debug" ]; then set -x #echo on
+if [ $# -eq 2 ]; then
+ if [ $2 == "debug" ]; then set -x #echo on
fi
fi
@@ -45,7 +44,7 @@ echo "Copy lxc-ubuntu container from the controller"
juju scp ubuntu@$1:/usr/share/lxc/templates/lxc-ubuntu ~/lxc-ubuntu
sudo cp ~/lxc-ubuntu /usr/share/lxc/templates/lxc-ubuntu
echo "Create the trusty-copper container"
-sudo lxc-create -n trusty-copper -t /usr/share/lxc/templates/lxc-ubuntu -l DEBUG -- -b $2 ~/$2
+sudo lxc-create -n trusty-copper -t /usr/share/lxc/templates/lxc-ubuntu -l DEBUG -- -b $USER ~/$USER
echo "Start trusty-copper"
sudo lxc-start -n trusty-copper -d
if (($? > 0)); then
@@ -78,6 +77,6 @@ export NOVA_HOST=$(juju status --format=short | awk "/nova-cloud-controller\/0/
EOF
echo "Invoke install_congress_testserver_2.sh on trusty-copper"
-ssh -t -x -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no $2@$COPPER_HOST "source ~/git/copper/components/congress/test-webapp/setup/install_congress_testserver_2.sh; exit"
+ssh -t -x -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no $USER@$COPPER_HOST "source ~/git/copper/components/congress/test-webapp/setup/install_congress_testserver_2.sh; exit"
set +x
diff --git a/components/congress/test-webapp/setup/install_congress_testserver_2.sh b/components/congress/test-webapp/setup/install_congress_testserver_2.sh
index aacc0fe..93d58d8 100644
--- a/components/congress/test-webapp/setup/install_congress_testserver_2.sh
+++ b/components/congress/test-webapp/setup/install_congress_testserver_2.sh
@@ -20,7 +20,8 @@
# On jumphost:
# - Congress installed through install_congress_1.sh
# How to use:
-# $ source ~/git/copper/tests/setup/install_congress_testserver_1.sh
+# $ source install_congress_testserver_1.sh <controller_hostname>
+# <controller_hostname> is the name of the controller node in MAAS
echo "Setup OpenStack environment variables per your OPNFV install"
source ~/env.sh
@@ -120,6 +121,9 @@ sudo sed -i -- "s/COPPER_HOST/$COPPER_HOST/g" /var/www/html/copper.js
echo "Point proxy.php to the Congress server per your install"
sudo sed -i -- "s/CONGRESS_HOST/$CONGRESS_HOST/g" /var/www/html/proxy/index.php
+echo "Set user so log files are stored"
+sudo sed -i -- "s/opnfv/$USER/g" /var/www/html/proxy/index.php
+
echo "Make webapp log directory and set permissions"
mkdir ~/coppertest/logs
chmod 777 ~/coppertest/logs
diff --git a/components/congress/test-webapp/www/html/congress_translators.js b/components/congress/test-webapp/www/html/congress_translators.js
index 466379e..eeb2934 100644
--- a/components/congress/test-webapp/www/html/congress_translators.js
+++ b/components/congress/test-webapp/www/html/congress_translators.js
@@ -361,8 +361,8 @@ var TRANSLATORS = [];
'selector-type': 'DICT_SELECTOR',
'in-list': true,
'field-translators':
-// TODO: Port ID added to complete table translation
- [{'fieldname': 'port id', 'translator': value_trans},
+// TODO: Security group ID added to complete table translation
+ [{'fieldname': 'security_group_id', 'translator': value_trans},
{'fieldname': 'id', 'translator': value_trans},
{'fieldname': 'tenant_id', 'translator': value_trans},
{'fieldname': 'remote_group_id', 'translator': value_trans},