forked from turnkeylinux/buildtasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bt-ec2
executable file
·221 lines (186 loc) · 6.73 KB
/
bt-ec2
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#!/bin/bash -e
# Copyright (c) 2011-2021 TurnKey GNU/Linux - http://www.turnkeylinux.org
#
# This file is part of buildtasks.
#
# Buildtasks is free software; you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published by the
# Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
fatal() { echo "FATAL [$(basename $0)]: $@" 1>&2; exit 1; }
warning() { echo "WARNING [$(basename $0)]: $@"; }
info() { echo "INFO [$(basename $0)]: $@"; }
usage() {
cat<<EOF
Syntax: $(basename $0) [ --options ] appname-version
Converts appliance appname-version to EC2 EBS-backed HVM AMI
Arguments::
appname-version - e.g., core-16.2-jessie-amd64
Options::
--name= - use as name basis (default: turnkey-version)
--copy - if set, image will be copied to all other regions
(ignored if non-stable version, unless --force set)
--publish - if set, image will be made public and log published
--marketplace - if set, image will be shared for marketplace
(ignored if non-stable version, unless --force set)
--force - --copy &/or --marketplace honored, even if non-stable
(otherwise --copy & --marketplace ignored)
--secupdates - install security updates before building image
--increment - install all (apt) updates before building image and
add increment to version number; e.g. 16.2.1
--pvmshim - apply paravirtual shim so snapshot is pvm compat.
--pvmregister - register pvm-virtualized snapshot, too
Environment::
BT_DEBUG - turn on debugging
EOF
exit 1
}
unset ebs_opts force secupdates increment pvmshim appver
while [ "$1" != "" ]; do
case $1 in
--help|-h) usage;;
--name=*) ebs_opts+="$1 ";;
--copy) ebs_opts+="$1 ";;
--marketplace) ebs_opts+="$1 ";;
--publish) ebs_opts+="$1 "; publish="yes";;
--force) force="yes";;
--secupdates) secupdates="yes";;
--increment) increment="yes";;
--pvmshim) pvmshim="yes";;
--pvmregister) ebs_opts+="$1 ";;
*) if [ -n "$appver" ]; then usage; else appver=$1; fi ;;
esac
shift
done
[ -n "$appver" ] || usage
[ -n "$secupdates" ] || warning "--secupdates was not specified"
if [[ -n "$secupdates" ]] && [[ -n "$increment" ]]; then
warning "--increment implies --secupdates"
unset secupdates
fi
[ -z "$BT_DEBUG" ] || set -x
export BT=$(dirname $(readlink -f $0))
export BT_CONFIG=$BT/config
. $BT_CONFIG/common.cfg
. $BT_CONFIG/aws.cfg
if [ "$publish" == "yes" ]; then
[ -n "$BT_PUBLISH_META" ] || fatal "BT_PUBLISH_META not set"
[ -n "$BT_PUBLISH_LOGS" ] || fatal "BT_PUBLISH_LOGS not set"
else
warning "--publish was not specified"
fi
get_version() {
pkg=$1
pkg_info=$(dpkg -l | grep ^ii | tr -s [[:blank:]] ' ' | cut -d' ' -f2,3 \
| grep "^$pkg[ |:]")
echo $pkg_info | cut -d' ' -f2
}
install_pkg() {
_pkg=$1
_url=$2
wget -O /tmp/$_pkg $_url/$_pkg
apt-get install /tmp/$_pkg
rm -rf /tmp/$_pkg
}
if [[ ! -f /usr/bin/ec2metadata ]]; then
codename=$(lsb_release -sc)
if [[ "$codename" == "buster" ]]; then
pkgs="ec2metadata python-boto3"
elif [[ "$codename" == "bullseye" ]]; then
pkgs="tkl-ec2metadata"
else
fatal "Expected buster or bullseye host"
fi
apt-get update -qq
apt-get install -y $pkgs
fi
parsed_appname_version=$($BT/bin/parse-appname-version $appver)
read appname appversion codename arch <<< "$parsed_appname_version"
# if non stable version, ensure that --marketplace and --copy switches are
# ignored, unless --force is set
if [[ ! "$appversion" =~ ^([0-9.]+)$ ]]; then
msg="non-stable version detected"
if [[ "$force" != "yes" ]]; then
msg="$msg - ignoring"
ebs_opts="${ebs_opts//--marketplace }"
ebs_opts="${ebs_opts//--copy }"
else
msg="$msg & --force set - honoring"
fi
warning "$msg --marketplace &/or --copy (if set)"
fi
os_arch=$(dpkg --print-architecture)
[ "$arch" == "$os_arch" ] || fatal "os_arch mismatch: $arch != $os_arch"
O=$BT_BUILDS/ec2
mkdir -p $O
export BT_VERSION=${appversion}-${codename}-${arch}
name=turnkey-${appname}-${BT_VERSION}
rootfs=$name.rootfs
cdroot=$name.cdroot
isofile=$name.iso
logfile=$name.log
if [[ -n "$increment" ]]; then
new_version="${appversion}.1"
new_name=turnkey-${appname}-${new_version}-${codename}-${arch}
logfile=$new_name.log
else
new_name=$name
fi
export LOGFILE_PATH=$O/$logfile
echo > $LOGFILE_PATH
$BT/bin/iso-download $BT_ISOS $BT_VERSION $appname
$BT/bin/iso-verify $BT_ISOS $BT_VERSION $appname
cd $O
tklpatch-extract-iso $BT_ISOS/$isofile
proxy=/etc/apt/apt.conf.d/00proxy
info "Checking for proxy ports"
grep -r '127.0.0.1:3128' /etc/apt/apt.conf.d/ || true
grep -r '127.0.0.1:8124' /etc/apt/apt.conf.d/ || true
if netstat -tlnp | grep -q polipo; then
cp $rootfs/$proxy $rootfs/_proxy_backup
sed -i "s|3128|8124|" $rootfs/$proxy
elif [[ -f "$rootfs/_proxy_backup" ]]; then
# assume that it's left over backup that didn't make it back
mv "$rootfs/_proxy_backup" "$rootfs/$proxy"
fi
function _cleanup() {
umount -l $rootfs/dev || true
umount -l $rootfs/sys || true
umount -l $rootfs/proc || true
mv $rootfs/_proxy_backup $rootfs/$proxy || true
if [ -z "$BT_DEBUG" ] && ! (mount | grep -q $(basename $rootfs)); then
rm -rf $rootfs
rm -rf $cdroot
fi
}
trap _cleanup INT TERM EXIT
mount --bind --make-rslave /proc $rootfs/proc
mount --bind --make-rslave /sys $rootfs/sys
mount --bind --make-rslave /dev $rootfs/dev
$BT/bin/purge-pkgs $rootfs
if [[ "$appversion" == *"rc"* ]] || [[ "$increment" == "yes" ]]; then
$BT/bin/upgrade-pkgs $rootfs
fi
tklpatch-apply $rootfs $BT/patches/headless
tklpatch-apply $rootfs $BT/patches/cloud
tklpatch-apply $rootfs $BT/patches/ec2
[ "$secupdates" == "yes" ] && tklpatch-apply $rootfs $BT/patches/secupdates
[ "$pvmshim" == "yes" ] && tklpatch-apply $rootfs $BT/patches/ec2-pvmshim
umount -l $rootfs/dev || true
umount -l $rootfs/sys || true
umount -l $rootfs/proc || true
$BT/bin/rootfs-cleanup $rootfs
$BT/bin/aptconf-tag $rootfs ec2
$BT/bin/build-tag $rootfs ec2
if [[ -f /usr/bin/python ]]; then
$BT/bin/ec2/legacy/ebs.py $ebs_opts $rootfs
else
$BT/bin/ec2/ebs.py $ebs_opts $rootfs
fi
$BT/bin/generate-buildenv ec2 $BT_ISOS/$isofile.hash > $O/$new_name.ec2.buildenv
if [ "$publish" == "yes" ]; then
export PUBLISH_DEST=${BT_PUBLISH_LOGS}/ec2/
$BT/bin/publish-files $LOGFILE_PATH
export PUBLISH_DEST=${BT_PUBLISH_META}/
$BT/bin/publish-files $O/$new_name.ec2.buildenv
fi