-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sh
290 lines (185 loc) · 5.02 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
#!/usr/bin/env bash
set -e
_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
##############################################################
waitForText() {
_text="$1"
$vmsh waitForText $osname "$_text"
}
#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
$vmsh setup
if ! $vmsh clearVM $osname; then
echo "vm does not exists"
fi
if [ "$VM_ISO_LINK" ]; then
$vmsh createVM $VM_ISO_LINK $osname $ostype $sshport
sleep 2
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 5
done
elif [ "$VM_VHD_LINK" ]; then
if [ ! -e "$osname.qcow2" ]; then
if [ ! -e "$osname.qcow2.xz" ]; then
$vmsh download "$VM_VHD_LINK" $osname.qcow2.xz
fi
xz -d -T 0 --verbose "$osname.qcow2.xz"
fi
$vmsh createVMFromVHD $osname $ostype $sshport
sleep 5
else
echo "no VM_ISO_LINK or VM_VHD_LINK, can not build."
exit 1
fi
$vmsh startVM $osname
sleep 2
###############################################
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
inputKeys "string root; enter; sleep 1;"
if [ "$VM_ROOT_PASSWORD" ]; then
inputKeys "string $VM_ROOT_PASSWORD ; enter"
fi
inputKeys "enter"
sleep 2
if [ ! -e ~/.ssh/id_rsa ] ; then
ssh-keygen -f ~/.ssh/id_rsa -q -N ""
fi
cat enablessh.txt >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 "echo '$(cat ~/.ssh/id_rsa.pub)' >>~/.ssh/authorized_keys" >>enablessh.local
echo "" >>enablessh.local
echo >>enablessh.local
echo "chmod 600 ~/.ssh/authorized_keys">>enablessh.local
echo "exit">>enablessh.local
echo >>enablessh.local
$vmsh inputFile $osname enablessh.local
###############################################################
$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 runner" >>.ssh/config
echo " ServerAliveInterval 1" >>.ssh/config
EOF
###############################################################
if [ -e "hooks/postBuild.sh" ]; then
echo "hooks/postBuild.sh"
cat "hooks/postBuild.sh"
ssh $osname sh<"hooks/postBuild.sh"
fi
ssh $osname 'cat ~/.ssh/id_rsa.pub' >$osname-$VM_RELEASE-id_rsa.pub
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
#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
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
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
##############################################################
ova="$osname-$VM_RELEASE.qcow2"
echo "Exporting $ova"
$vmsh exportOVA $osname "$ova"
cp ~/.ssh/id_rsa $osname-$VM_RELEASE-host.id_rsa
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 $osname-$VM_RELEASE-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