CSIT-226: Install vpp-plugins deb package on DUT
[csit.git] / resources / tools / download_install_vpp_pkgs.sh
1 #!/bin/bash
2
3 # Copyright (c) 2016 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 set -ex
17
18 trap 'rm -f *.deb.md5; exit' EXIT
19 trap 'rm -f *.deb.md5;rm -f *.deb; exit' ERR
20
21 URL="https://nexus.fd.io/service/local/artifact/maven/content"
22 VER="RELEASE"
23 REPO="fd.io.master.ubuntu.trusty.main"
24 GROUP="io.fd.vpp"
25 ARTIFACTS="vpp vpp-dbg vpp-dev vpp-dpdk-dev vpp-dpdk-dkms vpp-lib vpp-plugins"
26 PACKAGE="deb deb.md5"
27
28 for ART in ${ARTIFACTS}; do
29     for PAC in $PACKAGE; do
30         curl "${URL}?r=${REPO}&g=${GROUP}&a=${ART}&p=${PAC}&v=${VER}" -O -J || exit
31     done
32 done
33
34 for FILE in *.deb; do
35     echo " "${FILE} >> ${FILE}.md5
36 done
37
38 for MD5FILE in *.md5; do
39     md5sum -c ${MD5FILE} || exit
40 done
41
42 if [ "$1" != "--skip-install" ]; then
43     echo Installing VPP
44     sudo dpkg -i *.deb
45 else
46     echo VPP Installation skipped
47 fi