-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
62 lines (50 loc) · 1.76 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
#!/usr/bin/env bash
# Ghostwire install script
# Currently, only tested on Ubuntu
set -eu
repo="https://github.com/packetware/ghostwire"
arch=$(uname -m)
os=$(uname -s)
echo "🤗 Finding the right binary for your platform..."
if [ "$os" == "Linux" ]; then
if [ "$arch" == "x86_64" ]; then
target="linux-x86"
elif [ "$arch" == "aarch64" | "$arch" == "arm64" ]; then
target="linux-arm4"
else
echo "😩 Sorry, we don't have binaries for your platform: '$os $arch'"
echo " You can build from source or submit an issue at $repo/issues"
exit 1
fi
else
echo "😩 Sorry, we don't have binaries for your platform: '$os $arch'. Currently, only Linux is supported."
exit 1
fi
# Download the server
echo "📦 Downloading latest ghostwire server to /opt/ghostwire"
mkdir -p /opt/ghostwire
sudo curl --fail --location --progress-bar $repo/releases/latest/download/ghostwire-server-$target -o /opt/ghostwire/ghostwire
chmod +x /opt/ghostwire/ghostwire
# Start the systemd service
echo "🛠️ Creating systemd service for Ghostwire server"
sudo tee /etc/systemd/system/ghostwire.service > /dev/null <<EOL
[Unit]
Description=Ghostwire Server
After=network.target
[Service]
ExecStart=/opt/ghostwire/ghostwire
Restart=always
User=nobody
WorkingDirectory=/opt/ghostwire
[Install]
WantedBy=multi-user.target
EOL
echo "🚀 Starting Ghostwire server"
sudo systemctl daemon-reload
sudo systemctl enable ghostwire
sudo systemctl start ghostwire
# Download the CLI
echo "📦 Downloading latest ghostwire CLI to /usr/local/bin"
sudo curl --fail --location --progress-bar $repo/releases/latest/download/ghostwire-cli-$target -o /usr/local/bin/gw
sudo chmod +x /usr/local/bin/gw
echo "🎉 Installed Ghostwire! Run 'gw' to configure Ghostwire."