forked from bolt-observer/agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·116 lines (97 loc) · 4.03 KB
/
install.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
#!/bin/sh
{ # Prevent execution if this script was only partially downloaded
oops() {
echo "$0:" "$@" >&2
exit 1
}
umask 0022
sudo=${sudo:-"sudo"}
agent="bolt-agent"
bin_dir=${bin_dir:-"/usr/local/bin"}
tmpDir="$(mktemp -d -t boltobserver-unpack.XXXXXXXXXX || \
oops "Can't create temporary directory")"
cleanup() {
rm -rf "$tmpDir"
}
trap cleanup EXIT INT QUIT TERM
require_util() {
command -v "$1" > /dev/null 2>&1 ||
oops "you do not have '$1' installed, which I need to $2"
}
require_util unzip "unpack the package"
require_util gpg "check integrity"
require_util openssl "check integrity"
require_util sed "change service file"
if command -v curl > /dev/null 2>&1; then
fetch() { curl -s --fail -L "$1" -o "$2"; }
elif command -v wget > /dev/null 2>&1; then
fetch() { wget -q "$1" -O "$2"; }
else
oops "you don't have wget or curl installed, which I need to download zip"
fi
latest=$(fetch "https://api.github.com/repos/bolt-observer/agent/releases/latest" "-" | grep 'browser_' | cut -d":" -f 2- | tr -d '"' | rev | cut -d"/" -f 2 | rev | head -1)
case "$(uname -s).$(uname -m)" in
Linux.x86_64)
name=${agent}-${latest}-linux.zip
;;
Linux.aarch64)
name=${agent}-${latest}-rasp.zip
;;
Darwin.arm64|Darwin.aarch64)
name=${agent}-${latest}-darwin.zip
;;
*) oops "sorry, your platform is not yet supported";;
esac
url="https://github.com/bolt-observer/agent/releases/download/${latest}/${name}"
echo "downloading agent from '$url' to '$tmpDir'..."
fetch "$url" "$tmpDir/agent.zip" || oops "failed to download '$url'"
url="https://github.com/bolt-observer/agent/releases/download/${latest}/manifest-${latest}.txt"
echo "downloading manifest from '$url' to '$tmpDir'..."
fetch "$url" "$tmpDir/manifest.txt" || oops "failed to download '$url'"
url="https://github.com/bolt-observer/agent/releases/download/${latest}/manifest-${latest}.txt.asc"
echo "downloading manifest.asc from '$url' to '$tmpDir'..."
fetch "$url" "$tmpDir/manifest.txt.asc" || oops "failed to download '$url'"
url="https://raw.githubusercontent.com/bolt-observer/agent/main/scripts/keys/developers.asc"
echo "downloading key from '$url' to '$tmpDir'..."
fetch "$url" "$tmpDir/key" || oops "failed to download '$url'"
cat "$tmpDir/key" | gpg --import || true
restart="0"
if [ -d "/etc/systemd/system" ]; then
url="https://raw.githubusercontent.com/bolt-observer/agent/main/${agent}.service"
echo "downloading key from '$url' to '$tmpDir'..."
fetch "$url" "$tmpDir/service" || oops "failed to download '$url'"
if [ ! -f "/etc/systemd/system/${agent}.service" ]; then
echo "Will use sudo to install systemd service, you will probably need to enter credentials"
if [ -z ${apikey+x} ]; then
read -p "Enter API key for your node shown on bolt.observer website: " apikey
fi
cat "$tmpDir/service" | sed "s/changeme/${apikey}/g" | ${sudo} tee /etc/systemd/system/${agent}.service >/dev/null
${sudo} systemctl daemon-reload
${sudo} systemctl enable ${agent}.service
${sudo} systemctl start ${agent}.service
else
echo "Will use sudo to restart systemd service, you will probably need to enter credentials"
${sudo} systemctl daemon-reload
restart="1"
fi
fi
cd $tmpDir >/dev/null || oops "Cannot change directory"
# Checksum
gpg --verify manifest.txt.asc manifest.txt || { echo "GPG signature incorrect"; exit 1; }
sum=$(openssl sha256 agent.zip | cut -d "=" -f 2 | tr -d " \n")
grep -q $sum manifest.txt || { echo "Checksum invalid"; exit 1; }
unzip agent.zip
for i in *-agent-*; do
mv -f $i $(echo $i | cut -d "-" -f 1-2)
done
echo "Will use sudo to copy to ${bin_dir}, you will probably need to enter credentials"
${sudo} mkdir -p ${bin_dir}
${sudo} cp -f *-agent ${bin_dir}
if [ -d "/etc/systemd/system" ] && [ "$restart" = "1" ]; then
echo "Restarting ${agent}.service"
${sudo} systemctl enable ${agent}.service
${sudo} systemctl restart ${agent}.service
fi
cd - >/dev/null || oops "Cannot change directory"
echo "Agent ${latest} installed to ${bin_dir}"
} # end of wrapping