modified to fix the typo error. 77/3077/1
authorNarinder Gupta <narinder.gupta@canonical.com>
Thu, 5 Nov 2015 18:51:01 +0000 (12:51 -0600)
committerNarinder Gupta <narinder.gupta@canonical.com>
Thu, 5 Nov 2015 18:52:23 +0000 (12:52 -0600)
Change-Id: I9e48000abdd7b19affe586e731e36a49e66bb8fc
Author: Narinder Gupta <narinder.gupta@canonical.com>

ci/odl/01-deploybundle.sh

index 059afbc..4fdfe80 100755 (executable)
@@ -33,20 +33,25 @@ esac
 
 echo "... Deployment Started ...."
 case "$1" in
-    'nonha' )
-        juju-deployer -vW -d -c bundles.yaml trusty-"$2"
-        ;;
     'ha' )
         juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes
-        juju run --service nodes-api 'sudo ifup eth1'
-        juju run --service nodes-coompute 'sudo ifup eth1'
-        juju-deployer -vW -d -c bundles.yaml trusty-"$2"
-        ;;
-    'tip' )
-        juju-deployer -vW -d -c bundles.yaml trusty-"$2"
-        ;;
-    * )
-        juju-deployer -vW -d -c bundles.yaml trusty-"$2"
+        case "$3" in
+            'orangepod2' )
+                juju run --service nodes-api 'sudo ifup eth3'
+                juju run --service nodes-compute 'sudo ifup eth5'
+            ;;
+            'intelpod6' )
+                juju run --service nodes-api 'sudo ifup eth1'
+                juju run --service nodes-compute 'sudo ifup eth1'
+            ;;
+            'intelpod5' )
+                juju run --service nodes-api 'sudo ifup eth1'
+                juju run --service nodes-compute 'sudo ifup eth1'
+            ;;
+        esac
         ;;
 esac
+
+juju-deployer -vW -d -c bundles.yaml trusty-"$2"
+
 echo "... Deployment finished ...."