Add Centos 7 image to CSIT.
[csit.git] / resources / tools / disk-image-builder / centos / build-listmaker.sh
1 #!/bin/sh
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
15 # This builds the "listmaker" image. This is essentially a one-time
16 # action and most likely applicable to CSIT test lab only.
17
18 cd $(dirname $0)
19 BUILD_DIR="$(pwd)/build"
20 PACKER_DIR="${BUILD_DIR}/packer"
21 OUT_DIR="${BUILD_DIR}/output/listmaker"
22
23 if [ "$1" = "centos-7-1511" ]; then
24     RELEASE_NAME="csit-centos-7-1511-listmaker"
25     PACKER_TEMPLATE="listmaker/centos-7-1511.json"
26 elif [ "$1" = "centos-7.3-1611" ]; then
27     RELEASE_NAME="csit-centos-7.3-1611-listmaker"
28     PACKER_TEMPLATE="listmaker/centos-7.3-1611.json"
29 else
30     echo "Please provide OS as parameter:"
31     echo "Options: ${0} [centos-7-1511|centos-7.3-1611]"
32     exit 1
33 fi
34
35 VIRL_IMAGE_SUBTYPE=server
36 VIRL_IMAGE_NAME="${RELEASE_NAME}"
37 VIRL_IMAGE_FILE="${OUT_DIR}/packer-${RELEASE_NAME}"
38
39 # export PACKER_LOG="1"
40
41 # This script requires that the following two environment variables be defined-
42 #
43 # $VIRL_USER
44 # $VIRL_PASSWORD
45
46 if [ "$VIRL_USER" = "" ] || [ "$VIRL_PASSWORD" = "" ]
47 then
48   echo '$VIRL_USER and $VIRL_PASSWORD environment variables must be defined'
49   exit 1
50 fi
51
52 ###
53 ### Download and extract packer, if not already installed
54 ###
55 os=$(uname -s)
56 if [ "$os" = "Darwin" ]
57 then
58   packer_url="https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_darwin_amd64.zip"
59 elif [ "$os" = "Linux" ]
60 then
61   packer_url="https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_linux_amd64.zip"
62 fi
63
64 mkdir -p $BUILD_DIR
65 wget -P ${PACKER_DIR} -N ${packer_url}
66
67 unzip -n ${PACKER_DIR}/packer*zip -d ${PACKER_DIR}
68
69 ###
70 ### Build the actual image as per packer script. Packer post-processor will
71 ### upload it to VIRL.
72 ###
73 ${BUILD_DIR}/packer/packer build -var "release=${RELEASE_NAME}" \
74   -var "outputdir=${OUT_DIR}" -force -machine-readable ${PACKER_TEMPLATE}