summaryrefslogtreecommitdiffstats
path: root/build/overcloud-onos.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/overcloud-onos.sh')
-rwxr-xr-xbuild/overcloud-onos.sh46
1 files changed, 0 insertions, 46 deletions
diff --git a/build/overcloud-onos.sh b/build/overcloud-onos.sh
deleted file mode 100755
index 6af4118b..00000000
--- a/build/overcloud-onos.sh
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/sh
-##############################################################################
-# Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-set -e
-source ./cache.sh
-source ./variables.sh
-
-pushd ${BUILD_DIR} > /dev/null
-cp -f overcloud-full.qcow2 overcloud-full-onos_build.qcow2
-
-#######################################
-##### Adding ONOS to overcloud #####
-#######################################
-
-# get the onos files
-rm -rf puppet-onos
-populate_cache "$onos_release_uri/$onos_release_file" "$(curl https://downloads.onosproject.org/nightly/ | grep $onos_release_file | grep -o -e '[0-9a-f]\{32\}')"
-populate_cache "$onos_jdk_uri/jdk-8u51-linux-x64.tar.gz"
-
-LIBGUESTFS_BACKEND=direct $VIRT_CUSTOMIZE --upload ${CACHE_DIR}/${onos_release_file}:/opt/ \
- --run-command "mkdir /opt/onos && cd /opt/ && tar -xzf $onos_release_file -C /opt/onos --strip-components=1" \
- -a overcloud-full-onos_build.qcow2
-
-#Those files can be store in local cache for saving download time
-git clone https://github.com/bobzhouHW/puppet-onos.git
-tar --xform="s:puppet-onos/:onos/:" -czf puppet-onos.tar.gz puppet-onos
-
-LIBGUESTFS_BACKEND=direct $VIRT_CUSTOMIZE --upload ${CACHE_DIR}/jdk-8u51-linux-x64.tar.gz:/opt/ \
- --upload ${BUILD_DIR}/puppet-onos/files/install_jdk8.tar:/opt/ \
- --run-command "cd /opt/ && tar -xf install_jdk8.tar && sh /opt/install_jdk8/install_jdk8.sh" \
- --upload ${BUILD_DIR}/puppet-onos/files/networking-onos.tar:/opt/ \
- --run-command "cd /opt/ && tar -xf networking-onos.tar && sh /opt/networking-onos/install_driver.sh" \
- --upload ${BUILD_DIR}/puppet-onos/files/networking-sfc.tar:/opt/ \
- --run-command "cd /opt/ && tar -xf networking-sfc.tar && sh /opt/networking-sfc/install_driver.sh" \
- --upload ${BUILD_DIR}/puppet-onos.tar.gz:/etc/puppet/modules/ \
- --run-command "cd /etc/puppet/modules/ && tar xzf puppet-onos.tar.gz" \
- -a overcloud-full-onos_build.qcow2
-
-mv overcloud-full-onos_build.qcow2 overcloud-full-onos.qcow2
-popd > /dev/null