Update to Centos image 7.4-1711
[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 else
27     if [ "$1" = "centos-7.3-1611" ]; then
28         RELEASE_NAME="csit-centos-7.3-1611-listmaker"
29         PACKER_TEMPLATE="listmaker/centos-7.3-1611.json"
30     elif [ "$1" = "centos-7.4-1711" ]; then
31         RELEASE_NAME="csit-centos-7.4-1711-listmaker"
32         PACKER_TEMPLATE="listmaker/centos-7.4-1711.json"
33     else
34         echo "Please provide OS as parameter:"
35         echo "Options: ${0} [centos-7-1511|centos-7.3-1611|centos-7.4-1711]"
36         exit 1
37     fi
38 fi
39
40 VIRL_IMAGE_SUBTYPE=server
41 VIRL_IMAGE_NAME="${RELEASE_NAME}"
42 VIRL_IMAGE_FILE="${OUT_DIR}/packer-${RELEASE_NAME}"
43
44 # export PACKER_LOG="1"
45
46 # This script requires that the following two environment variables be defined-
47 #
48 # $VIRL_USER
49 # $VIRL_PASSWORD
50
51 if [ "$VIRL_USER" = "" ] || [ "$VIRL_PASSWORD" = "" ]
52 then
53   echo '$VIRL_USER and $VIRL_PASSWORD environment variables must be defined'
54   exit 1
55 fi
56
57 ###
58 ### Download and extract packer, if not already installed
59 ###
60 os=$(uname -s)
61 if [ "$os" = "Darwin" ]
62 then
63   packer_url="https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_darwin_amd64.zip"
64 elif [ "$os" = "Linux" ]
65 then
66   packer_url="https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_linux_amd64.zip"
67 fi
68
69 mkdir -p $BUILD_DIR
70 wget -P ${PACKER_DIR} -N ${packer_url}
71
72 unzip -n ${PACKER_DIR}/packer*zip -d ${PACKER_DIR}
73
74 ###
75 ### Build the actual image as per packer script. Packer post-processor will
76 ### upload it to VIRL.
77 ###
78 ${BUILD_DIR}/packer/packer build -var "release=${RELEASE_NAME}" \
79   -var "outputdir=${OUT_DIR}" -force -machine-readable ${PACKER_TEMPLATE}