-
Notifications
You must be signed in to change notification settings - Fork 19
/
bt-bugfix
executable file
·249 lines (212 loc) · 7.46 KB
/
bt-bugfix
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#!/bin/bash -e
# Copyright (c) 2022 TurnKey GNU/Linux - https://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")]: $*" 1>&2; }
info() { echo "INFO [$(basename "$0")]: $*"; }
usage() {
cat<<EOF
Syntax: $(basename "$0") [ --options ] appname-version
Patch appliance appname-version with appname-version patch (if it exists),
increment version and repackage as ISO, (re)generating tklbam profile.
Arguments::
appname-version - e.g., core-17.0-bullseye-amd64
Options::
--publish - publish iso, release files and tklbam profile
--secupdates - run secupdates
--updates - install all available updates
--bug-number - note bug number closed in updated changelog
--force - do not fail if directories exist
Environment::
BT_DEBUG - turn on debugging
EOF
exit 1
}
unset appver publish secupdates updates bug_num force
while [[ "$1" != "" ]]; do
case $1 in
--help|-h) usage;;
--publish) publish="yes";;
--secupdates) secupdates="yes";;
--updates) updates="yes";;
--bug-number) shift; bug_num="$1";;
--force) force="yes";;
*) if [[ -n "$appver" ]]; then
usage
else
appver=$1
fi;;
esac
shift
done
[[ -n "$appver" ]] || usage
[[ -n "$secupdates" ]] || warning "--secupdates was not specified"
[[ -z "$BT_DEBUG" ]] || set -x
bt_bugfix_path=$(readlink -f "$0")
bt_dir=$(dirname "$bt_bugfix_path")
export BT="$bt_dir"
export BT_CONFIG=$BT/config
# shellcheck source=/dev/null
source "$BT_CONFIG/common.cfg"
if [[ "$publish" == "yes" ]]; then
[[ -n "$BT_PUBLISH_IMGS" ]] || fatal "BT_PUBLISH_IMGS not set"
[[ -n "$BT_PUBLISH_META" ]] || fatal "BT_PUBLISH_META not set"
[[ -n "$BT_PUBLISH_PROFILES" ]] || fatal "BT_PUBLISH_PROFILES not set"
else
warning "--publish was not specified"
fi
info "Setting up."
[[ -n "$BT_ISOS" ]] || fatal "BT_ISO not set"
O=$BT_ISOS
mkdir -p "$O"
parsed_appname_version=$("$BT/bin/parse-appname-version" "$appver")
read -r appname appversion codename arch <<< "$parsed_appname_version"
export BT_VERSION=${appversion}-${codename}-${arch}
os_arch=$(dpkg --print-architecture)
[[ "$arch" == "$os_arch" ]] || fatal "os_arch mismatch: $arch != $os_arch"
major_v=$(sed -En "s|^([0-9]+)\.[0-9]+|\1|p" <<< "$appversion")
minor_v=$(sed -En "s|^[0-9]+\.([0-9]+)|\1|p" <<< "$appversion")
new_appversion="${major_v}.$((minor_v + 1))"
export NEW_BT_VERSION=${new_appversion}-${codename}-${arch}
name=turnkey-${appname}-${BT_VERSION}
new_name=turnkey-${appname}-${NEW_BT_VERSION}
isofile=$name.iso
rootfs=$name.rootfs
cdroot=$name.cdroot
new_isofile=$new_name.iso
old_sec_pkg=turnkey-${appname}-${appversion}
new_sec_pkg=turnkey-${appname}-${new_appversion}
old_changelog=$rootfs/usr/share/doc/$old_sec_pkg/changelog
new_changelog=$new_name.changelog
_umount() {
info "Unmounting resources from rootfs."
umount -l "$rootfs/run" || true
umount -l "$rootfs/dev" || true
umount -l "$rootfs/sys" || true
umount -l "$rootfs/proc" || true
}
_cleanup() {
_umount
if [[ -z "$BT_DEBUG" ]] || [[ "$force" == "yes" ]]; then
info "Cleaning up files and directories."
rm -rf "${O:?}/${new_sec_pkg:?}"
if ! (mount | grep -q "$(basename "$rootfs")"); then
rm -rf "${O:?}/${rootfs:?}"
rm -rf "${O:?}/${cdroot:?}"
else
warning "$rootfs not unmounted."
fi
fi
}
#trap _cleanup INT TERM EXIT
info "Download and verfiy ISO."
"$BT/bin/iso-download" "$BT_ISOS" "$BT_VERSION" "$appname" \
|| "$BT/bt-iso" "$appname"
"$BT/bin/iso-verify" "$BT_ISOS" "$BT_VERSION" "$appname"
cd "$O"
[[ "$force" == "yes" ]] || _cleanup
tklpatch-extract-iso "$isofile"
unset patches
[[ ! -d "$BT/patches/$BT_VERSION" ]] \
|| patches="$BT/patches/$BT_VERSION"
[[ ! -d "$BT/patches/${appname}-${NEW_BT_VERSION}" ]] \
|| patches="$patches $BT-patches/${appname}-${NEW_BT_VERSION}"
if [[ "$updates" == "yes" ]]; then
patches="$patches $BT/patches/updates"
elif [[ "$secupdates" == "yes" ]]; then
patches="$patches $BT/patches/secupdates"
fi
patch_test=$(tr -d '[:space:]' <<< "$patches")
if [[ -z "$patch_test" ]]; then
if [[ -z "$BT_DEBUG" ]]; then
fatal "Exiting. No patches to be applied."
else
info "No patches to be applied - continuing because BT_DEBUG"
fi
else
info "Patches to be applied: $patches."
fi
info "Generating updated updated changelog."
# update changelog
msg="Patched bugfix release."
[[ -z "$bug_num" ]] || msg="$msg Closes #${bug_num}."
cat > "$new_changelog" <<EOF
${new_sec_pkg} (1) turnkey; urgency=low
EOF
if [[ "$patches" == *"/updates"* ]]; then
cat >> "$new_changelog" <<EOF
* Updated all Debian packages to latest.
[ autopatched by buildtasks ]
EOF
elif [[ "$patches" == *"/secupdates"* ]]; then
cat >> "$new_changelog" <<EOF
* Pre-installed all latest Debian security updates.
[ autopatched by buildtasks ]
EOF
fi
cat >> "$new_changelog" <<EOF
* $msg
[ autopatched by buildtasks ]
-- Jeremy Davis <[email protected]> $(date +"%a, %d %b %Y %H:%M:%S %z")
EOF
cat "$old_changelog" >> "$new_changelog"
info "Updating turnkey_version and preparing update version package."
echo "$new_name" > "$rootfs/etc/turnkey_version"
"$BT/bin/generate-release-deb" "$new_changelog" "$rootfs"
update_patch=$BT/patches/update-release
conf_script=$update_patch/conf
mkdir -p "$update_patch"
touch "$conf_script"
cat > "$conf_script" <<EOF
#!/bin/bash -e
export DEBIAN_FRONTEND=noninteractive
apt-get purge -y $old_sec_pkg
apt-get install -y /$new_sec_pkg*.deb
rm -rf /$new_sec_pkg*.deb
EOF
chmod +x "$conf_script"
mount --bind --make-rslave /proc "$rootfs/proc"
mount --bind --make-rslave /sys "$rootfs/sys"
mount --bind --make-rslave /dev "$rootfs/dev"
mount --bind --make-rslave /run "$rootfs/run"
info "Applying patches:"
info " - $update_patch."
tklpatch-apply-conf "$rootfs" "$conf_script"
info " - $update_patch - done."
rm -rf "$update_patch"
for patch in $patches; do
info " - $patch."
[[ ! -d "$patch/overlay" ]] || tklpatch-apply-overlay "$patch/overlay"
tklpatch-apply-conf "$rootfs" "$patch/conf"
info " - $patch - done."
done
tklpatch-apply-cleanup "$rootfs"
_umount
info "Cleaning up rootfs and rebuilding new ISO."
"$BT/bin/rootfs-cleanup" "$rootfs"
"$BT/bin/aptconf-tag" "$rootfs" iso
tklpatch-prepare-cdroot "$rootfs" "$cdroot"
TKLPATCH_ISOLABEL=${appname} tklpatch-geniso "$cdroot" "$new_isofile"
info "Preparing release files."
"$BT/bin/generate-signature" "$O/$new_isofile"
"$BT/bin/generate-manifest" "$rootfs" > "$O/$new_name.manifest"
"$BT/bin/generate-buildenv" iso "$appname" > "$O/$new_name.iso.buildenv"
if [[ -e "$BT_PROFILES/$appname" ]]; then
mkdir -p "$O/$new_name.tklbam"
export PROFILES_CONF=$BT_PROFILES
"$BT/bin/generate-tklbam-profile" "$O/$new_name.iso" "$O/$new_name.tklbam"
fi
_cleanup
if [[ "$publish" == "yes" ]]; then
"$BT/bin/iso-publish" "$BT_ISOS/$new_name.iso"
if [[ -z "$BT_DEBUG" ]]; then
rm -rf "$BT_ISOS/$name.iso*"
rm -rf "${BT_ISOS:?}/${new_name:?}*"
fi
fi