forked from vmactions/freebsd-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.sh
302 lines (208 loc) · 5.37 KB
/
run.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
#!/usr/bin/env bash
set -e
export PATH=$PATH:/Library/Frameworks/Python.framework/Versions/Current/bin
_script="$0"
_script_home="$(dirname "$_script")"
_oldPWD="$PWD"
#everytime we cd to the script home
cd "$_script_home"
#find the release number
if [ -z "$VM_RELEASE" ]; then
if [ ! -e "conf/default.release.conf" ]; then
echo "The VM_RELEASE is empty, but the conf/default.release.conf is not found. something wrong."
exit 1
fi
. "conf/default.release.conf"
VM_RELEASE=$DEFAULT_RELEASE
fi
#set arbitrary guestname with Github Runner
export VM_GUESTNAME
export VM_RELEASE
#load the release conf
if [ ! -e "conf/$VM_RELEASE.conf" ]; then
echo "Can not find release conf: conf/$VM_RELEASE.conf"
echo "The supported release conf: "
ls conf/*
exit 1
fi
. conf/$VM_RELEASE.conf
#load the vm conf
_conf_filename="$(echo "$CONF_LINK" | rev | cut -d / -f 1 | rev)"
echo "Config file: $_conf_filename"
if [ ! -e "$_conf_filename" ]; then
wget -q "$CONF_LINK"
fi
. $_conf_filename
export VM_ISO_LINK
export VM_OS_NAME
export VM_RELEASE
export VM_INSTALL_CMD
export VM_SSHFS_PKG
export VM_LOGIN_TAG
export VM_OCR
export VM_DISK
export VM_ARCH
export VM_RSYNC
##########################################################
vmsh="$VM_VBOX"
if [ ! -e "$vmsh" ]; then
echo "Downloading vbox ${SEC_VBOX:-$VM_VBOX_LINK} to: $PWD"
wget -O $vmsh "${SEC_VBOX:-$VM_VBOX_LINK}"
fi
osname="$VM_OS_NAME"
ostype="$VM_OS_TYPE"
sshport=$VM_SSH_PORT
ovafile="$osname-$VM_RELEASE.qcow2.xz"
_idfile='~/.ssh/host.id_rsa'
importVM() {
bash $vmsh setup
if [ ! -e "$ovafile" ]; then
echo "Downloading $OVA_LINK"
axel -n 8 -o "$ovafile" -q "$OVA_LINK"
echo "Download finished, extract"
xz -d $ovafile
echo "Extract finished"
fi
if [ ! -e "id_rsa.pub" ]; then
echo "Downloading $VM_PUBID_LINK"
wget -O "id_rsa.pub" -q "$VM_PUBID_LINK"
fi
if [ ! -e "host.id_rsa" ]; then
echo "Downloading $HOST_ID_LINK"
wget -O "host.id_rsa" -q "$HOST_ID_LINK"
fi
ls -lah
bash $vmsh addSSHAuthorizedKeys id_rsa.pub
cat host.id_rsa >$HOME/.ssh/host.id_rsa
chmod 600 $HOME/.ssh/host.id_rsa
bash $vmsh importVM $VM_GUESTNAME $ostype "$osname-$VM_RELEASE.qcow2"
if [ "$DEBUG" ]; then
bash $vmsh startWeb $VM_GUESTNAME
fi
}
waitForVMReady() {
bash $vmsh waitForVMReady "$VM_GUESTNAME"
}
#using the default ksh
execSSH() {
exec ssh "$VM_GUESTNAME"
}
#using the sh
execSSHSH() {
exec ssh "$VM_GUESTNAME" sh
}
addNAT() {
_prot="$1"
_hostport="$2"
_vmport="$3"
_vmip=$(bash $vmsh getVMIP "$VM_GUESTNAME")
echo "vm ip: $_vmip"
if ! command -v socat; then
echo "installing socat"
if bash $vmsh isLinux; then
sudo apt-get install -y socat
else
brew install socat
fi
fi
if [ "$_prot" == "udp" ]; then
sudo socat UDP4-RECVFROM:$_hostport,fork UDP4-SENDTO:$_vmip:$_vmport >/dev/null 2>&1 &
else
sudo socat TCP-LISTEN:$_hostport,fork TCP:$_vmip:$_vmport >/dev/null 2>&1 &
fi
}
setMemory() {
bash $vmsh setMemory "$VM_GUESTNAME" "$@"
}
setCPU() {
bash $vmsh setCPU "$VM_GUESTNAME" "$@"
}
startVM() {
bash $vmsh startVM "$VM_GUESTNAME"
}
rsyncToVM() {
_pwd="$PWD"
cd "$_oldPWD"
rsync -avrtopg -e 'ssh -o [email protected]' --exclude _actions --exclude _PipelineMapping $HOME/work/ $VM_GUESTNAME:work
cd "$_pwd"
}
rsyncBackFromVM() {
_pwd="$PWD"
cd "$_oldPWD"
rsync -vrtopg -e 'ssh -o [email protected]' $VM_GUESTNAME:work/ $VM_GUESTNAME:$VM_RSYNC $HOME/work
cd "$_pwd"
}
installRsyncInVM() {
ssh "$VM_GUESTNAME" sh <<EOF
if ! command -v rsync; then
$VM_INSTALL_CMD $VM_RSYNC_PKG
fi
EOF
}
runSSHFSInVM() {
if [ -e "hooks/onRunSSHFS.sh" ] && ssh "$VM_GUESTNAME" sh <hooks/onRunSSHFS.sh; then
echo "OK";
elif [ "$VM_SSHFS_PKG" ]; then
echo "Installing $VM_SSHFS_PKG"
ssh "$VM_GUESTNAME" sh <<EOF
if ! command -v sshfs ; then
$VM_INSTALL_CMD $VM_SSHFS_PKG
fi
EOF
echo "Run sshfs"
ssh "$VM_GUESTNAME" sh <<EOF
if sshfs -o reconnect,ServerAliveCountMax=2,allow_other,default_permissions host:work $HOME/work ; then
echo "run sshfs in vm is OK, show mount:"
/sbin/mount
if [ "$VM_GUESTNAME" = "netbsd" ]; then
tree $HOME/work
fi
else
echo "error run sshfs in vm."
exit 1
fi
EOF
fi
}
#run in the vm, just as soon as the vm is up
onStarted() {
bash $vmsh addSSHHost $VM_GUESTNAME "$_idfile"
#just touch the file, so that the user can access this file in the VM
echo "" >>${GITHUB_ENV}
if [ -e "hooks/onStarted.sh" ]; then
ssh "$VM_GUESTNAME" sh <hooks/onStarted.sh
fi
}
#run in the vm, just after the files are initialized
onInitialized() {
if [ -e "hooks/onInitialized.sh" ]; then
ssh "$VM_GUESTNAME" sh <hooks/onInitialized.sh
fi
}
onBeforeStartVM() {
#run in the host machine, the VM is imported, but not booted yet.
if [ -e "hooks/onBeforeStartVM.sh" ]; then
echo "Run hooks/onBeforeStartVM.sh"
. hooks/onBeforeStartVM.sh
else
echo "Skip hooks/onBeforeStartVM.sh"
fi
}
showDebugInfo() {
echo "==================Debug Info===================="
pwd && ls -lah && sudo ps aux
bash -c 'pwd && ls -lah ~/.ssh/'
if [ -e "$HOME/.ssh/config" ]; then
cat "$HOME/.ssh/config"
fi
cat $_conf_filename
echo "===================Debug Info in VM============="
ssh "$VM_GUESTNAME" sh <<EOF
pwd
ls -lah
whoami
tree .
EOF
echo "================================================"
}
"$@"