You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bh...@apache.org on 2013/02/07 07:04:59 UTC

git commit: refs/heads/4.1 - CLOUDSTACK-520: Autorename vmware and manageontap jars

Updated Branches:
  refs/heads/4.1 15d660946 -> f270f627d


CLOUDSTACK-520: Autorename vmware and manageontap jars

Signed-off-by: Rohit Yadav <bh...@apache.org>
(cherry picked from commit 5fe1ef47dd66160f11cad2f36a026ad53c687c7e)

Signed-off-by: Rohit Yadav <bh...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/f270f627
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/f270f627
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/f270f627

Branch: refs/heads/4.1
Commit: f270f627d62b31b35b9108d403945d1183d2b96c
Parents: 15d6609
Author: Rohit Yadav <bh...@apache.org>
Authored: Thu Feb 7 11:33:01 2013 +0530
Committer: Rohit Yadav <bh...@apache.org>
Committed: Thu Feb 7 11:34:39 2013 +0530

----------------------------------------------------------------------
 deps/install-non-oss.sh |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/f270f627/deps/install-non-oss.sh
----------------------------------------------------------------------
diff --git a/deps/install-non-oss.sh b/deps/install-non-oss.sh
index 28eb03e..af495e7 100755
--- a/deps/install-non-oss.sh
+++ b/deps/install-non-oss.sh
@@ -8,7 +8,7 @@
 # with the License.  You may obtain a copy of the License at
 #
 #   http://www.apache.org/licenses/LICENSE-2.0
-# 
+#
 # Unless required by applicable law or agreed to in writing,
 # software distributed under the License is distributed on an
 # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -19,13 +19,17 @@
 mvn install:install-file -Dfile=cloud-iControl.jar      -DgroupId=com.cloud.com.f5     -DartifactId=icontrol        -Dversion=1.0   -Dpackaging=jar
 mvn install:install-file -Dfile=cloud-netscaler.jar     -DgroupId=com.cloud.com.citrix -DartifactId=netscaler       -Dversion=1.0   -Dpackaging=jar
 mvn install:install-file -Dfile=cloud-netscaler-sdx.jar -DgroupId=com.cloud.com.citrix -DartifactId=netscaler-sdx   -Dversion=1.0   -Dpackaging=jar
-# 
+
 # From http://support.netapp.com/  (not available online, contact your support representative)
 # Version: 4.0
+if [ -e cloud-manageontap.jar ]; then mv cloud-manageontap.jar manageontap.jar;  fi
 mvn install:install-file -Dfile=manageontap.jar   -DgroupId=com.cloud.com.netapp -DartifactId=manageontap     -Dversion=4.0   -Dpackaging=jar
-#
+
 # From https://my.vmware.com/group/vmware/get-download?downloadGroup=VSDK41
-# Version: 4.1, Release-date: 2010-07-13, Build: 257238 
+# Version: 4.1, Release-date: 2010-07-13, Build: 257238
+if [ -e vmware-apputils.jar ]; then mv vmware-apputils.jar  apputils.jar;  fi
+if [ -e vmware-vim.jar ];      then mv vmware-vim.jar       vim.jar;       fi
+if [ -e vmware-vim25.jar ];    then mv vmware-vim25.jar     vim25.jar;     fi
 mvn install:install-file -Dfile=vim25.jar        -DgroupId=com.cloud.com.vmware -DartifactId=vmware-vim25    -Dversion=4.1   -Dpackaging=jar
 mvn install:install-file -Dfile=apputils.jar     -DgroupId=com.cloud.com.vmware -DartifactId=vmware-apputils -Dversion=4.1   -Dpackaging=jar
 mvn install:install-file -Dfile=vim.jar          -DgroupId=com.cloud.com.vmware -DartifactId=vmware-vim      -Dversion=4.1   -Dpackaging=jar