diff scripts/launcher/launch.sh @ 40:1eb3ec190ea1

add test_accounts to create a batch of testing profiles
author souliane <souliane@mailoo.org>
date Sun, 08 Mar 2015 14:33:03 +0100
parents 7b337be4052d
children 068252a37689
line wrap: on
line diff
--- a/scripts/launcher/launch.sh	Thu Feb 05 12:28:11 2015 +0100
+++ b/scripts/launcher/launch.sh	Sun Mar 08 14:33:03 2015 +0100
@@ -40,8 +40,8 @@
 FF_PROFILES=(test1 test2 test3 test4)
 # 4 SàT profiles names for testing
 SAT_PROFILES=(pierre elisee louise buenaventura)
-# Passwords for these profiles
-SAT_PROFILES_PASSWD=(xxxxxx xxxxxx xxxxxx xxxxxx)
+# Common profile password for these profiles
+SAT_PROFILES_PASSWD=
 
 # Launch sat in debug mode?
 SAT_DEBUG=1
@@ -125,7 +125,7 @@
     # Assumes the HTTPS port for local server is 8443
     echo "####### Starting 4 libervia clients #######"
     for I in `seq 0 3`; do
-        URL="https://localhost:8443/libervia.html?login=${SAT_PROFILES[$I]}&passwd=${SAT_PROFILES_PASSWD[$I]}"
+        URL="https://localhost:8443/libervia.html?login=${SAT_PROFILES[$I]}&passwd=${SAT_PROFILES_PASSWD}"
         firefox -no-remote -P ${FF_PROFILES[$I]} "$URL" &
     done
 }