-
Notifications
You must be signed in to change notification settings - Fork 99
/
build.sh
executable file
·288 lines (244 loc) · 8.61 KB
/
build.sh
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#!/bin/bash
set -o nounset
set -o errexit
# set -o xtrace
# make sure we have dependencies
hash vagrant 2>/dev/null || { echo >&2 "ERROR: vagrant not found. Aborting."; exit 1; }
hash VBoxManage 2>/dev/null || { echo >&2 "ERROR: VBoxManage not found. Aborting."; exit 1; }
hash 7z 2>/dev/null || { echo >&2 "ERROR: 7z not found. Aborting."; exit 1; }
hash curl 2>/dev/null || { echo >&2 "ERROR: curl not found. Aborting."; exit 1; }
hash cpio 2>/dev/null || { echo >&2 "ERROR: cpio not found. Aborting."; exit 1; }
VBOX_VERSION="$(VBoxManage --version)"
if hash mkisofs 2>/dev/null; then
MKISOFS="$(which mkisofs)"
elif hash genisoimage 2>/dev/null; then
MKISOFS="$(which genisoimage)"
else
echo >&2 "ERROR: mkisofs or genisoimage not found. Aborting."
exit 1
fi
if [ "$OSTYPE" = "linux-gnu" ]; then
SED="$(which sed) -r"
MD5="md5sum"
elif [ "$OSTYPE" = "msys" ]; then
SED="$(which sed) -r"
MD5="md5 -l"
else
SED="$(which sed) -E"
MD5="md5 -q"
fi
# Configurations
# location, location, location
FOLDER_BASE=$(pwd)
FOLDER_ISO="${FOLDER_BASE}/iso"
FOLDER_BUILD="${FOLDER_BASE}/build"
FOLDER_VBOX="${FOLDER_BUILD}/vbox"
FOLDER_ISO_CUSTOM="${FOLDER_BUILD}/iso/custom"
FOLDER_ISO_INITRD="${FOLDER_BUILD}/iso/initrd"
# Env option: architecture (i386 or amd64)
ARCH=${ARCH:-amd64}
# Env option: Debian CD image mirror; default is http://cdimage.debian.org/debian-cd/
DEBIAN_CDIMAGE=${DEBIAN_CDIMAGE:-cdimage.debian.org}
DEBIAN_CDIMAGE_URL="http://${DEBIAN_CDIMAGE}/debian-cd/"
# Check if the Debian version is set manually (ie. DEBVER="8.4.0") or use the latest version
if [ -z ${DEBVER+x} ]; then
DEBVER=$(curl -sS ${DEBIAN_CDIMAGE_URL} | grep -E ">[0-9]+\.[0-9]\.[0-9]/<" | ${SED} 's/.*>([0-9]+\.[0-9]\.[0-9])\/<.*/\1/')
echo "Detected latest Debian version \"$DEBVER\" from $DEBIAN_CDIMAGE_URL"
else
echo "Using Debian version \"$DEBVER\""
fi
# Env option: the vagrant box name; default is debian-jessie-$ARCH
BOX=${BOX:-debian-jessie-${ARCH}}
ISO_FILE="debian-${DEBVER}-${ARCH}-netinst.iso"
ISO_BASEURL="${DEBIAN_CDIMAGE_URL}${DEBVER}/${ARCH}/iso-cd"
ISO_URL="${ISO_BASEURL}/${ISO_FILE}"
ISO_MD5=$(curl -sS ${ISO_BASEURL}/MD5SUMS | grep ${ISO_FILE} | cut -f1 -d" ")
if [ "$ARCH" = "amd64" ]; then
VBOX_OSTYPE=Debian_64
else
VBOX_OSTYPE=Debian
fi
# Env option: Use headless mode or GUI
VM_GUI="${VM_GUI:-}"
if [ "x${VM_GUI}" == "xyes" ] || [ "x${VM_GUI}" == "x1" ]; then
STARTVM="VBoxManage startvm ${BOX}"
else
STARTVM="VBoxManage startvm ${BOX} --type headless"
fi
STOPVM="VBoxManage controlvm ${BOX} poweroff"
# Env option: Use custom preseed.cfg or default
DEFAULT_PRESEED="${FOLDER_BASE}/preseed.cfg"
PRESEED="${PRESEED:-"$DEFAULT_PRESEED"}"
# Env option: Use custom late_command.sh or default
DEFAULT_LATE_CMD="${FOLDER_BASE}/late_command.sh"
LATE_CMD="${LATE_CMD:-"$DEFAULT_LATE_CMD"}"
# Parameter changes from 4.2 to 4.3
if [[ "$VBOX_VERSION" < 4.3 ]]; then
PORTCOUNT="--sataportcount 1"
else
PORTCOUNT="--portcount 1"
fi
# start with a clean slate
if VBoxManage list runningvms | grep "${BOX}" >/dev/null 2>&1; then
echo "Stopping vm ..."
${STOPVM}
fi
if VBoxManage showvminfo "${BOX}" >/dev/null 2>&1; then
echo "Unregistering vm ..."
VBoxManage unregistervm "${BOX}" --delete
fi
if [ -d "${FOLDER_BUILD}" ]; then
echo "Cleaning build directory ..."
chmod -R u+w "${FOLDER_BUILD}"
rm -rf "${FOLDER_BUILD}"
fi
if [ -f "${FOLDER_ISO}/custom.iso" ]; then
echo "Removing custom iso ..."
rm "${FOLDER_ISO}/custom.iso"
fi
if [ -f "${FOLDER_BASE}/${BOX}.box" ]; then
echo "Removing old ${BOX}.box" ...
rm "${FOLDER_BASE}/${BOX}.box"
fi
# Setting things back up again
mkdir -p "${FOLDER_ISO}"
mkdir -p "${FOLDER_BUILD}"
mkdir -p "${FOLDER_VBOX}"
mkdir -p "${FOLDER_ISO_CUSTOM}"
mkdir -p "${FOLDER_ISO_INITRD}"
ISO_FILENAME="${FOLDER_ISO}/${ISO_FILE}"
INITRD_FILENAME="${FOLDER_ISO}/initrd.gz"
# download the installation disk if you haven't already or it is corrupted somehow
echo "Downloading `basename ${ISO_URL}` ..."
if [ ! -e "${ISO_FILENAME}" ]; then
curl --output "${ISO_FILENAME}" -L "${ISO_URL}"
fi
# make sure download is right...
ISO_HASH=$($MD5 "${ISO_FILENAME}" | cut -d ' ' -f 1)
if [ "${ISO_MD5}" != "${ISO_HASH}" ]; then
echo "ERROR: MD5 does not match. Got ${ISO_HASH} instead of ${ISO_MD5}. Aborting."
exit 1
fi
# customize it
echo "Creating Custom ISO"
if [ ! -e "${FOLDER_ISO}/custom.iso" ]; then
echo "Using 7zip"
7z x "${ISO_FILENAME}" -o"${FOLDER_ISO_CUSTOM}"
# If that didn't work, you have to update p7zip
if [ ! -e $FOLDER_ISO_CUSTOM ]; then
echo "Error with extracting the ISO file with your version of p7zip. Try updating to the latest version."
exit 1
fi
# backup initrd.gz
echo "Backing up current init.rd ..."
FOLDER_INSTALL=$(ls -1 -d "${FOLDER_ISO_CUSTOM}/install."* | sed 's/^.*\///')
chmod u+w "${FOLDER_ISO_CUSTOM}/${FOLDER_INSTALL}" "${FOLDER_ISO_CUSTOM}/install" "${FOLDER_ISO_CUSTOM}/${FOLDER_INSTALL}/initrd.gz"
cp -r "${FOLDER_ISO_CUSTOM}/${FOLDER_INSTALL}/"* "${FOLDER_ISO_CUSTOM}/install/"
mv "${FOLDER_ISO_CUSTOM}/install/initrd.gz" "${FOLDER_ISO_CUSTOM}/install/initrd.gz.org"
# stick in our new initrd.gz
echo "Installing new initrd.gz ..."
cd "${FOLDER_ISO_INITRD}"
if [ "$OSTYPE" = "msys" ]; then
gunzip -c "${FOLDER_ISO_CUSTOM}/install/initrd.gz.org" | cpio -i --make-directories || true
else
gunzip -c "${FOLDER_ISO_CUSTOM}/install/initrd.gz.org" | cpio -id || true
fi
cd "${FOLDER_BASE}"
if [ "${PRESEED}" != "${DEFAULT_PRESEED}" ] ; then
echo "Using custom preseed file ${PRESEED}"
fi
cp "${PRESEED}" "${FOLDER_ISO_INITRD}/preseed.cfg"
cd "${FOLDER_ISO_INITRD}"
find . | cpio --create --format='newc' | gzip > "${FOLDER_ISO_CUSTOM}/install/initrd.gz"
# clean up permissions
echo "Cleaning up Permissions ..."
chmod u-w "${FOLDER_ISO_CUSTOM}/install" "${FOLDER_ISO_CUSTOM}/install/initrd.gz" "${FOLDER_ISO_CUSTOM}/install/initrd.gz.org"
# replace isolinux configuration
echo "Replacing isolinux config ..."
cd "${FOLDER_BASE}"
chmod u+w "${FOLDER_ISO_CUSTOM}/isolinux" "${FOLDER_ISO_CUSTOM}/isolinux/isolinux.cfg"
rm "${FOLDER_ISO_CUSTOM}/isolinux/isolinux.cfg"
cp ${FOLDER_BASE}/isolinux.cfg "${FOLDER_ISO_CUSTOM}/isolinux/isolinux.cfg"
chmod u+w "${FOLDER_ISO_CUSTOM}/isolinux/isolinux.bin"
# add late_command script
echo "Add late_command script ..."
chmod u+w "${FOLDER_ISO_CUSTOM}"
cp "${LATE_CMD}" "${FOLDER_ISO_CUSTOM}/late_command.sh"
echo "Running mkisofs ..."
"$MKISOFS" -r -V "Custom Debian $DEBVER $ARCH CD" \
-cache-inodes -quiet \
-J -l -b isolinux/isolinux.bin \
-c isolinux/boot.cat -no-emul-boot \
-boot-load-size 4 -boot-info-table \
-o "${FOLDER_ISO}/custom.iso" "${FOLDER_ISO_CUSTOM}"
fi
# create virtual machine
if ! VBoxManage showvminfo "${BOX}" >/dev/null 2>&1; then
echo "Creating VM Box ${BOX}..."
VBoxManage createvm \
--name "${BOX}" \
--ostype "${VBOX_OSTYPE}" \
--register \
--basefolder "${FOLDER_VBOX}"
VBoxManage modifyvm "${BOX}" \
--memory 360 \
--boot1 dvd \
--boot2 disk \
--boot3 none \
--boot4 none \
--vram 12 \
--pae off \
--rtcuseutc on
VBoxManage storagectl "${BOX}" \
--name "IDE Controller" \
--add ide \
--controller PIIX4 \
--hostiocache on
VBoxManage storageattach "${BOX}" \
--storagectl "IDE Controller" \
--port 1 \
--device 0 \
--type dvddrive \
--medium "${FOLDER_ISO}/custom.iso"
VBoxManage storagectl "${BOX}" \
--name "SATA Controller" \
--add sata \
--controller IntelAhci \
$PORTCOUNT \
--hostiocache off
VBoxManage createhd \
--filename "${FOLDER_VBOX}/${BOX}/${BOX}.vdi" \
--size 40960
VBoxManage storageattach "${BOX}" \
--storagectl "SATA Controller" \
--port 0 \
--device 0 \
--type hdd \
--medium "${FOLDER_VBOX}/${BOX}/${BOX}.vdi"
${STARTVM}
echo -n "Waiting for installer to finish "
while VBoxManage list runningvms | grep "${BOX}" >/dev/null; do
sleep 20
echo -n "."
done
echo ""
VBoxManage storageattach "${BOX}" \
--storagectl "IDE Controller" \
--port 1 \
--device 0 \
--type dvddrive \
--medium emptydrive
fi
echo "Building Vagrant Box ${BOX}..."
vagrant package --base "${BOX}" --output "${BOX}.box"
if [ -d "${FOLDER_BUILD}" ]; then
echo "Cleaning build directory ..."
chmod -R u+w "${FOLDER_BUILD}"
rm -rf "${FOLDER_BUILD}"
fi
echo "DONE. To add ${BOX}.box with name debian-jessie into vagrant, just run:"
echo "vagrant box add \"debian-jessie\" ${BOX}.box"
# references:
# http://blog.ericwhite.ca/articles/2009/11/unattended-debian-lenny-install/
# http://docs-v1.vagrantup.com/v1/docs/base_boxes.html
# http://www.debian.org/releases/stable/example-preseed.txt