deploy.sh: read TARGET_LAB and TARGET_POD 23/14023/1
authorJosep Puigdemont <josep.puigdemont@enea.com>
Thu, 12 May 2016 13:37:26 +0000 (15:37 +0200)
committerJosep Puigdemont <josep.puigdemont@enea.com>
Thu, 12 May 2016 13:39:30 +0000 (15:39 +0200)
Read both TARGET_LAB and TARGET_POD from the command line parameters
passed to Fuel's build script. We need these to find local_env.

Change-Id: I288dedeb75001b0983e63e68e993b2a35fd6f6fc
Signed-off-by: Josep Puigdemont <josep.puigdemont@enea.com>
ci/deploy.sh

index 5f258c8..8ad1166 100755 (executable)
@@ -15,6 +15,13 @@ make patches-import
 
 # source local environment variables
 if ! [ -z $LAB_CONFIG_URL ]; then
+    while getopts "l:p:" OPTION 2>/dev/null
+    do
+        case $OPTION in
+            l) TARGET_LAB=$OPTARG;;
+            p) TARGET_POD=$OPTARG;;
+        esac
+    done
     local_env=${LAB_CONFIG_URL}/labs/${TARGET_LAB}/${TARGET_POD}/fuel/config/local_env
     # try to fetch this file, but don't create it if it does not exist.
     # We add "|| true" to ignore the curl error when the file does not exist