forked from nanovms/ops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·309 lines (260 loc) · 8.17 KB
/
Copy pathinstall.sh
File metadata and controls
executable file
·309 lines (260 loc) · 8.17 KB
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
#!/bin/sh
# This install script is intended to download and install the latest available
# release of the ops.
# Installer script inspired from:
# 1) https://wasmer.io/
# 2) https://sh.rustup.rs
# 3) https://yarnpkg.com/install.sh
# 4) https://raw.githubusercontent.com/brainsik/virtualenv-burrito/master/virtualenv-burrito.sh
#
# It attempts to identify the current platform and an error will be thrown if
# the platform is not supported.
#
# Environment variables:
# - INSTALL_DIRECTORY (optional): defaults to $HOME/.ops
reset="\033[0m"
red="\033[31m"
green="\033[32m"
yellow="\033[33m"
cyan="\033[36m"
white="\033[37m"
bold="\e[1m"
dim="\e[2m"
RELEASES_URL="https://storage.googleapis.com/cli"
initOS() {
OS=$(uname | tr '[:upper:]' '[:lower:]')
if [ -n "$OPS_OS" ]; then
printf "$cyan> Using OPS_OS ($OPS_OS).$reset\n"
OS="$OPS_OS"
fi
case "$OS" in
darwin) OS='darwin';;
linux) OS='linux';;
*) printf "$red> The OS (${OS}) is not supported ops.$reset\n"; exit 1;;
esac
}
download_file() {
url="$1"
destination="$2"
echo "Fetching $url.."
if test -x "$(command -v curl)"; then
code=$(curl --progress-bar -w '%{http_code}' -L "$url" -o "$destination")
elif test -x "$(command -v wget)"; then
code=$(wget --show-progress --progress=bar:force:noscroll -q -O "$destination" --server-response "$url" 2>&1 | awk '/^ HTTP/{print $2}' | tail -1)
else
printf "$red> Neither curl nor wget was available to perform http requests.$reset\n"
exit 1
fi
if [ "$code" != 200 ]; then
printf "$red>File download failed with code $code.$reset\n"
exit 1
fi
}
ops_download() {
# determine install directory if required
if [ -z "$INSTALL_DIRECTORY" ]; then
INSTALL_DIRECTORY="$HOME/.ops"
fi
OPS=INSTALL_DIRECTORY
# TODO: Track release TAGS and update.
# use github release tags
# assemble expected release URL
BINARY_URL="$RELEASES_URL/${OS}/ops"
DOWNLOAD_FILE=$(mktemp -t ops.XXXXXXXXXX)
download_file "$BINARY_URL" "$DOWNLOAD_FILE"
printf "\033[2A$cyan> Downloading latest release... ✓$reset\033[K\n"
printf "\033[K\n\033[1A"
chmod +x "$DOWNLOAD_FILE"
INSTALL_NAME="ops"
mkdir -p $INSTALL_DIRECTORY/bin
mv "$DOWNLOAD_FILE" "$INSTALL_DIRECTORY/bin/$INSTALL_NAME"
}
ops_detect_profile() {
if [ -n "${PROFILE}" ] && [ -f "${PROFILE}" ]; then
echo "${PROFILE}"
return
fi
local DETECTED_PROFILE
DETECTED_PROFILE=''
local SHELLTYPE
SHELLTYPE="$(basename "/$SHELL")"
if [ "$SHELLTYPE" = "bash" ]; then
if [ -f "$HOME/.bashrc" ]; then
DETECTED_PROFILE="$HOME/.bashrc"
elif [ -f "$HOME/.bash_profile" ]; then
DETECTED_PROFILE="$HOME/.bash_profile"
fi
elif [ "$SHELLTYPE" = "zsh" ]; then
DETECTED_PROFILE="$HOME/.zshrc"
elif [ "$SHELLTYPE" = "fish" ]; then
DETECTED_PROFILE="$HOME/.config/fish/config.fish"
fi
if [ -z "$DETECTED_PROFILE" ]; then
if [ -f "$HOME/.profile" ]; then
DETECTED_PROFILE="$HOME/.profile"
elif [ -f "$HOME/.bashrc" ]; then
DETECTED_PROFILE="$HOME/.bashrc"
elif [ -f "$HOME/.bash_profile" ]; then
DETECTED_PROFILE="$HOME/.bash_profile"
elif [ -f "$HOME/.zshrc" ]; then
DETECTED_PROFILE="$HOME/.zshrc"
elif [ -f "$HOME/.config/fish/config.fish" ]; then
DETECTED_PROFILE="$HOME/.config/fish/config.fish"
fi
fi
if [ ! -z "$DETECTED_PROFILE" ]; then
echo "$DETECTED_PROFILE"
fi
}
ops_detect_supported_linux_distribution() {
if [ -f /etc/os-release ]; then
. /etc/os-release
DETECTED_DISTRIBUTION=$NAME
elif type lsb_release >/dev/null 2>&1; then
DETECTED_DISTRIBUTION=$(lsb_release -si)
elif [ -f /etc/lsb-release ]; then
. /etc/lsb-release
DETCTED_DISTRIBUTION=$DISTRIB_ID
elif [ -f /etc/debian_version ]; then
DETECTED_DISTRIBUTION=debian
elif [ -f /etc/fedora-release ]; then
DETECTED_DISTRIBUTION=fedora
elif [ -f /etc/centos-release ]; then
DETECTED_DISTRIBUTION=centos
fi
echo "$DETECTED_DISTRIBUTION"
}
ops_brew_install_qemu() {
if which brew >/dev/null; then
brew install qemu
else
printf "Homebrew not found.Please install from https://brew.sh/"
fi
}
ops_apt_install_qemu(){
apt install qemu -y --no-upgrade
}
ops_dnf_install_qemu(){
dnf install qemu-kvm qemu-img -y
}
ops_yum_install_qemu(){
yum install qemu-kvm qemu-img -y
}
ops_install_qemu() {
if which qemu-system-x86_64>/dev/null; then
return
fi
# install qemu on mac or supported linux distributions
if [ "$OS" = "darwin" ]; then
ops_brew_install_qemu
else
LINUX_DISTRIBUTION=`echo $(ops_detect_supported_linux_distribution) | tr '[:upper:]' '[:lower:]'`
case "$LINUX_DISTRIBUTION" in
*ubuntu*)
ops_apt_install_qemu
;;
*fedora*)
ops_dnf_install_qemu
;;
*centos*)
ops_yum_install_qemu
;;
*debian*)
ops_apt_install_qemu
;;
esac
fi
if ! which qemu-system-x86_64>/dev/null; then
printf "QEMU not found. Please install qemu using your package manager and re-run this script"
fi
}
ops_user_permissions() {
local group="kvm"
local username=`whoami`
local prompt="Ops uses kvm acceleration. Would you like to add ${username} to the kvm group [yes/No]? "
local notification="Adding ${username} to ${group} using sudo."
local failure="Unable to add ${username} to ${group}. Please add the $username to ${group} manually."
local success="${username} has been added to kvm ${group}. The change will take affect on the next login."
local add_user
if groups $username | grep -q "\b${group}\b"; then
return
fi
while true
do
printf "$prompt"
read REPLY
local reply=`echo $REPLY | tr '[:upper:]' '[:lower:]'`
if [ -z "$reply" ]; then
reply="no"
fi
case "$reply" in
no) add_user=false
break
;;
yes) add_user=true
break
;;
*) echo "Valid responses are either \"yes\" or \"no\"".
esac
done
if ! $add_user; then
return
fi
printf "$notification\n"
sudo usermod -aG $group $username
if [ $? -eq 0 ]; then
printf "$success\n"
else
printf "$failure\n"
fi
}
ops_set_user_permissions(){
if [ "$OS" = "linux" ]; then
ops_user_permissions
fi
}
ops_link() {
printf "$cyan> Adding to bash profile...$reset\n"
OPS_PROFILE="$(ops_detect_profile)"
SOURCE_STR="# OPS config\nexport OPS_DIR=\"\$HOME/.ops\"\nexport PATH=\"\$HOME/.ops/bin:\$PATH\"\n"
# Create the ops.sh file
echo "$SOURCE_STR" > "$HOME/.ops/ops.sh"
if [ -z "${OPS_PROFILE-}" ] ; then
printf "${red}Profile not found. Tried:\n* ${OPS_PROFILE} (as defined in \$PROFILE)\n* ~/.bashrc\n* ~/.bash_profile\n* ~/.zshrc\n* ~/.profile.\n"
echo "\nHow to solve this issue?\n* Create one of them and run this script again"
echo "* Create it (touch ${OPS_PROFILE}) and run this script again"
echo " OR"
printf "* Append the following lines to the correct file yourself:$reset\n"
command printf "${SOURCE_STR}"
else
if ! grep -q 'ops.sh' "$OPS_PROFILE"; then
command printf "$SOURCE_STR" >> "$OPS_PROFILE"
fi
printf "\033[1A$cyan> Adding to bash profile... ✓$reset\n"
printf "${dim}Note: We've added the following to your $OPS_PROFILE\n"
echo "If this isn't the profile of your current shell then please add the following to your correct profile:"
printf " $SOURCE_STR$reset\n"
version=`$HOME/.ops/bin/ops version` || (
printf "$red> ops was installed, but doesn't seem to be working :($reset\n"
exit 1;
)
printf "$green> Successfully installed ops $version! Please open another terminal where the \`ops\` command will now be available.$reset\n"
fi
}
ops_install() {
magenta1="${reset}\033[34;1m"
magenta2="${reset}\033[34m"
magenta3="${reset}\033[34;2m"
if which ops >/dev/null; then
printf "${reset}Updating ops$reset\n"
else
printf "${reset}Installing ops!$reset\n"
fi
# identify platform based on uname output
initOS
ops_install_qemu
ops_set_user_permissions
ops_download
ops_link
}
ops_install