blob: 59b44e5a19718aaf567c1569671e639534fef25d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#!/bin/sh
# Copyright (c) 2016 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# This builds the "listmaker" image. This is essentially a one-time
# action and most likely applicable to CSIT test lab only.
cd $(dirname $0)
BUILD_DIR="$(pwd)/build"
PACKER_DIR="${BUILD_DIR}/packer"
OUT_DIR="${BUILD_DIR}/output/listmaker"
RELEASE_NAME="csit-ubuntu-14.04.4-listmaker"
PACKER_TEMPLATE="listmaker/ubuntu-14.04.4.json"
VIRL_IMAGE_SUBTYPE=server
VIRL_IMAGE_NAME="${RELEASE_NAME}"
VIRL_IMAGE_FILE="${OUT_DIR}/packer-${RELEASE_NAME}"
# export PACKER_LOG="1"
# This script requires that the following two environment variables be defined-
#
# $VIRL_USER
# $VIRL_PASSWORD
if [ "$VIRL_USER" = "" ] || [ "$VIRL_PASSWORD" = "" ]
then
echo '$VIRL_USER and $VIRL_PASSWORD environment variables must be defined'
exit 1
fi
###
### Download and extract packer, if not already installed
###
os=$(uname -s)
if [ "$os" = "Darwin" ]
then
packer_url="https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_darwin_amd64.zip"
elif [ "$os" = "Linux" ]
then
packer_url="https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_linux_amd64.zip"
fi
mkdir -p $BUILD_DIR
wget -P ${PACKER_DIR} -N ${packer_url}
unzip -n ${PACKER_DIR}/packer*zip -d ${PACKER_DIR}
###
### Build the actual image as per packer script. Packer post-processor will
### upload it to VIRL.
###
${BUILD_DIR}/packer/packer build -var "release=${RELEASE_NAME}" \
-var "outputdir=${OUT_DIR}" -force -machine-readable ${PACKER_TEMPLATE}
|