mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-02-23 17:37:03 +00:00
23 lines
630 B
Bash
23 lines
630 B
Bash
#!/bin/sh -e
|
|
|
|
. ../../common-script.sh
|
|
|
|
installNgrok() {
|
|
if ! command_exists ngrok; then
|
|
printf "%b\n" "${YELLOW}Installing Ngrok...${RC}"
|
|
curl -sSLO https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz
|
|
if [ -f "ngrok-v3-stable-linux-amd64.tgz" ]; then
|
|
elevated_execution tar -xz -f ngrok-v3-stable-linux-amd64.tgz -C /usr/local/bin
|
|
else
|
|
printf "%b\n" "${RED}Error occurred when downloading.${RC}"
|
|
exit 1
|
|
fi
|
|
else
|
|
printf "%b\n" "${GREEN}Ngrok is already installed.${RC}"
|
|
fi
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
installNgrok
|