-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
398 lines (277 loc) · 7.4 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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
#!/usr/bin/env bash
set -ex
_conf="$1"
if [ -z "$_conf" ] ; then
echo "Please give the conf file"
exit 1
fi
. "$_conf"
##############################################################
osname="$VM_OS_NAME"
ostype="$VM_OS_TYPE"
sshport=$VM_SSH_PORT
opts="$VM_OPTS"
vboxlink="${SEC_VBOX:-$VM_VBOX_LINK}"
vmsh="$VM_VBOX"
export VM_OS_NAME
export VM_RELEASE
export VM_OCR
export VM_DISK
export VM_ARCH
export VM_CPU
export VM_USE_CONSOLE_BUILD
export VM_USE_SSHROOT_BUILD_SSH
export VM_NO_VNC_BUILD
##############################################################
waitForText() {
_text="$1"
_sec="$2"
$vmsh waitForText $osname "$_text" "$_sec"
}
#keys splitted by ;
#eg: enter
#eg: down; enter
#eg: down; up; tab; enter
inputKeys() {
$vmsh input $osname "$1"
}
if [ ! -e "$vmsh" ] ; then
echo "Downloading $vboxlink"
wget -O "$vmsh" "$vboxlink"
fi
chmod +x "$vmsh"
$vmsh startWeb $osname "needOCR"
$vmsh setup "needOCR"
if ! $vmsh clearVM $osname; then
echo "vm does not exists"
fi
if [ "$VM_ISO_LINK" ]; then
#start from iso, install to the vir disk
$vmsh createVM $VM_ISO_LINK $osname $ostype $sshport
sleep 2
$vmsh openConsole "$osname"
if [ -e "hooks/installOpts.sh" ]; then
echo "hooks/installOpts.sh"
cat "hooks/installOpts.sh"
. "hooks/installOpts.sh"
else
$vmsh processOpts $osname "$opts"
echo "sleep 60 seconds. just wait"
sleep 60
if $vmsh isRunning $osname; then
if ! $vmsh shutdownVM $osname; then
echo "shutdown error"
fi
if ! $vmsh destroyVM $osname; then
echo "destroyVM error"
fi
fi
fi
while $vmsh isRunning $osname; do
sleep 20
done
$vmsh closeConsole "$osname"
if [[ "$VM_ISO_LINK" == *"img" ]]; then
$vmsh detachIMG "$osname"
fi
elif [ "$VM_VHD_LINK" ]; then
#if the vm disk is already provided FreeBSD, just import it.
if [ ! -e "$osname.qcow2" ]; then
if [[ "$VM_VHD_LINK" == *"img.gz" ]]; then
_img="$osname.img"
if [ ! -e "$_img" ]; then
rm -f "$_img.gz"
$vmsh download "$VM_VHD_LINK" "$_img.gz"
gunzip -c "$_img.gz" > "$_img"
fi
qemu-img convert -f raw -O qcow2 -o preallocation=off "$_img" "$osname.qcow2"
else
if [ ! -e "$osname.qcow2.xz" ]; then
$vmsh download "$VM_VHD_LINK" $osname.qcow2.xz
fi
xz -d -T 0 --verbose "$osname.qcow2.xz"
fi
fi
$vmsh createVMFromVHD $osname $ostype $sshport
sleep 5
else
echo "no VM_ISO_LINK or VM_VHD_LINK, can not build."
exit 1
fi
echo "VM image size immediately after install:"
ls -lh
start_and_wait() {
$vmsh startVM $osname
sleep 2
$vmsh openConsole "$osname"
if [ -e "hooks/waitForLoginTag.sh" ]; then
echo "hooks/waitForLoginTag.sh"
cat "hooks/waitForLoginTag.sh"
. "hooks/waitForLoginTag.sh"
else
waitForText "$VM_LOGIN_TAG"
fi
sleep 3
}
shutdown_and_wait() {
ssh $osname "$VM_SHUTDOWN_CMD"
sleep 30
if $vmsh isRunning $osname; then
if ! $vmsh shutdownVM $osname; then
echo "shutdown error"
fi
fi
while $vmsh isRunning $osname; do
sleep 5
done
$vmsh closeConsole "$osname"
}
restart_and_wait() {
shutdown_and_wait
start_and_wait
}
###############################################
#start the installed vm, and initialize the ssh access:
if [ -z "$VM_NO_VNC_BUILD" ]; then
export VM_USE_CONSOLE_BUILD=""
fi
start_and_wait
if [ ! -e ~/.ssh/id_rsa ] ; then
ssh-keygen -f ~/.ssh/id_rsa -q -N ""
fi
cat enablessh.txt >enablessh.local
echo "echo '$(cat ~/.ssh/id_rsa.pub)' >>~/.ssh/authorized_keys" >>enablessh.local
echo "" >>enablessh.local
echo "" >>enablessh.local
echo "" >>enablessh.local
#add ssh key twice, to avoid bugs.
echo "echo '$(base64 -w 0 ~/.ssh/id_rsa.pub)' | openssl base64 -d >>~/.ssh/authorized_keys" >>enablessh.local
echo "" >>enablessh.local
echo "" >>enablessh.local
echo >>enablessh.local
echo "chmod 600 ~/.ssh/authorized_keys">>enablessh.local
echo "">>enablessh.local
echo >>enablessh.local
cat enablessh.local
if [ "$VM_USE_SSHROOT_BUILD_SSH" ]; then
vmip=$($vmsh getVMIP $osname)
sshpass -p "$VM_ROOT_PASSWORD" ssh -o StrictHostKeyChecking=no -tt root@$vmip TERM=xterm <enablessh.local
#sleep for the sshd server to restart
sleep 10
inputKeys "enter"
sleep 2
inputKeys "enter"
sleep 2
echo "check ssh access:"
ssh -vv root@$vmip pwd
echo "ssh OK"
else
inputKeys "string root; enter; sleep 1;"
if [ "$VM_ROOT_PASSWORD" ]; then
inputKeys "string $VM_ROOT_PASSWORD ; enter"
fi
inputKeys "enter"
sleep 2
$vmsh screenText $osname
$vmsh inputFile $osname enablessh.local
$vmsh screenText $osname
#sleep for the sshd server to restart
sleep 10
inputKeys "enter"
sleep 2
inputKeys "enter"
sleep 2
fi
###############################################################
$vmsh addSSHHost $osname
ssh $osname sh <<EOF
echo 'StrictHostKeyChecking=no' >.ssh/config
echo "Host host" >>.ssh/config
echo " HostName 192.168.122.1" >>.ssh/config
echo " User $USER" >>.ssh/config
echo " ServerAliveInterval 1" >>.ssh/config
EOF
###############################################################
if [ -e "hooks/postBuild.sh" ]; then
echo "hooks/postBuild.sh"
cat "hooks/postBuild.sh"
export VM_RELEASE
ssh -o "SendEnv=VM_RELEASE" $osname sh<"hooks/postBuild.sh"
# Reboot here, possible there were system updates done that need
# a reboot to take effect before more operations can be done
restart_and_wait
fi
output="$osname-$VM_RELEASE"
if [ "$VM_ARCH" ]; then
output="$osname-$VM_RELEASE-$VM_ARCH"
fi
ssh $osname 'cat ~/.ssh/id_rsa.pub' >$output-id_rsa.pub
#upload reboot.sh
if [ -e "hooks/reboot.sh" ]; then
echo "hooks/reboot.sh"
cat "hooks/reboot.sh"
scp hooks/reboot.sh $osname:/reboot.sh
else
ssh "$osname" "cat - >/reboot.sh" <<EOF
sleep 5
ssh host sh <<END
env | grep SSH_CLIENT | cut -d = -f 2 | cut -d ' ' -f 1 >$osname.rebooted
END
EOF
ssh "$osname" "cat /reboot.sh"
fi
#set cronjob
ssh "$osname" sh <<EOF
chmod +x /reboot.sh
cat /reboot.sh
if uname -a | grep SunOS >/dev/null; then
crontab -l | { cat; echo "* * * * * /reboot.sh"; } | crontab --
else
crontab -l | { cat; echo "@reboot /reboot.sh"; } | crontab -
fi
crontab -l
EOF
# Install any requested packages
if [ "$VM_PRE_INSTALL_PKGS" ]; then
echo "$VM_INSTALL_CMD $VM_PRE_INSTALL_PKGS"
ssh $osname sh <<<"$VM_INSTALL_CMD $VM_PRE_INSTALL_PKGS"
fi
if [ -e "hooks/finalize.sh" ]; then
echo "hooks/finalize.sh"
cat "hooks/finalize.sh"
export VM_RELEASE
ssh -o "SendEnv=VM_RELEASE" $osname sh<"hooks/finalize.sh"
fi
# Done!
shutdown_and_wait
##############################################################
if [ "$VM_ISO_LINK" ]; then
echo "Clean up ISO for more space"
sudo rm -f ${osname}.iso
fi
echo "contents of home directory:"
ls -lah
echo "free space:"
df -h
ova="$output.qcow2"
echo "Exporting $ova"
$vmsh exportOVA $osname "$ova"
cp ~/.ssh/id_rsa $output-host.id_rsa
echo "contents after export:"
ls -lah
##############################################################
echo "Checking the packages: $VM_RSYNC_PKG $VM_SSHFS_PKG"
if [ -z "$VM_RSYNC_PKG$VM_SSHFS_PKG" ]; then
echo "skip"
else
$vmsh addSSHAuthorizedKeys $output-id_rsa.pub
$vmsh startVM $osname
$vmsh waitForVMReady $osname
if [ "$VM_RSYNC_PKG" ]; then
ssh $osname sh <<<"$VM_INSTALL_CMD $VM_RSYNC_PKG"
fi
if [ "$VM_SSHFS_PKG" ]; then
ssh $osname sh <<<"$VM_INSTALL_CMD $VM_SSHFS_PKG"
fi
fi
echo "Build finished."