summaryrefslogtreecommitdiffstats
path: root/build/overcloud-opendaylight-sfc.sh
diff options
context:
space:
mode:
authorDan Radez <dradez@redhat.com>2016-10-12 11:28:57 -0400
committerDan Radez <dradez@redhat.com>2016-10-18 14:59:10 +0000
commitb3840e9981c007e26eb7cbdf94f66d0f58a6e3f7 (patch)
tree1b114aa81dbeac77f964f82feedb3ca0016e4935 /build/overcloud-opendaylight-sfc.sh
parent08c991dd086f4c4d094e232d0dfb39c760eff521 (diff)
Consolidate ODL SFC RPM into ODL RPM
OVS NSH can be installed at deploy time. Change-Id: Ie875ada99053df95c6534e269f4dd627396489bc JIRA: APEX-324 Signed-off-by: Dan Radez <dradez@redhat.com> (cherry picked from commit 0f866cf4bfd57c28a754f274582887c943694953)
Diffstat (limited to 'build/overcloud-opendaylight-sfc.sh')
-rwxr-xr-xbuild/overcloud-opendaylight-sfc.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/build/overcloud-opendaylight-sfc.sh b/build/overcloud-opendaylight-sfc.sh
deleted file mode 100755
index 444d284a..00000000
--- a/build/overcloud-opendaylight-sfc.sh
+++ /dev/null
@@ -1,27 +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 ./variables.sh
-pushd images > /dev/null
-
-################################################
-##### Adding SFC+OpenDaylight overcloud #####
-################################################
-
-#copy opendaylight overcloud full to odl-sfc
-cp -f overcloud-full-opendaylight.qcow2 overcloud-full-opendaylight-sfc_build.qcow2
-
-# upgrade ovs into ovs 2.5.90 with NSH function
-LIBGUESTFS_BACKEND=direct virt-customize --run-command "yum install -y /root/ovs/rpm/rpmbuild/RPMS/x86_64/${ovs_kmod_rpm_name}" \
- --run-command "yum upgrade -y /root/ovs/rpm/rpmbuild/RPMS/x86_64/${ovs_rpm_name}" \
- -a overcloud-full-opendaylight-sfc_build.qcow2
-
-mv overcloud-full-opendaylight-sfc_build.qcow2 overcloud-full-opendaylight-sfc.qcow2
-popd > /dev/null