systemd-ngrok/install.sh
David Eleazar 999e557ac8
Minor improvements
Improved error text on install.sh and uninstall.sh
2023-09-20 01:05:00 +07:00

67 lines
1.3 KiB
Bash
Executable File

#!/usr/bin/env bash
# determine system arch
ARCH=
if [ "$(uname -m)" == 'x86_64' ]
then
ARCH=amd64
elif [ "$(uname -m)" == 'aarch64' ]
then
ARCH=arm64
elif [ "$(uname -m)" == 'i386' ] || [ "$(uname -m)" == 'i686' ]
then
ARCH=386
else
ARCH=arm
fi
ARCHIVE=ngrok-v3-stable-linux-$ARCH.tgz
DOWNLOAD_URL=https://bin.equinox.io/c/bNyj1mQVY4c/$ARCHIVE
if [ ! $(which wget) ]; then
echo 'Please install wget package'
exit 1
fi
if [ ! $(which git) ]; then
echo 'Please install git package'
exit 1
fi
if (( $EUID != 0 )); then
echo "Usage: sudo bash install.sh [your_authtoken]"
echo "_____"
echo "ERROR: Please run as root."
exit 1
fi
if [ -z "$1" ];
echo "Usage: sudo bash install.sh [your_authtoken]"
echo "_____"
echo "ERROR: You must supply an authentication token as an argument."
exit 1
fi
if [ ! -e ngrok.service ]; then
git clone --depth=1 https://github.com/vincenthsu/systemd-ngrok.git
cd systemd-ngrok
fi
cp ngrok.service /lib/systemd/system/
mkdir -p /opt/ngrok
cp ngrok.yml /opt/ngrok
sed -i "s/<add_your_token_here>/$1/g" /opt/ngrok/ngrok.yml
cd /opt/ngrok
echo "Downloading ngrok for $ARCH . . ."
wget $DOWNLOAD_URL
tar xzf $ARCHIVE
rm $ARCHIVE
chmod +x ngrok
systemctl enable ngrok.service
systemctl start ngrok.service
echo "Done installing ngrok"
exit 0