-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d5b7cc7
commit b55b263
Showing
1 changed file
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
#!/bin/sh | ||
|
||
export LC_ALL="en_US.UTF-8" | ||
export LC_CTYPE="en_US.UTF-8" | ||
|
||
INSTALL_PATH=/usr/local/bin | ||
PORT=8002 | ||
|
||
MACHINE_TYPE=`uname -m` | ||
OS=`uname | tr '[A-Z]' '[a-z]'` | ||
|
||
post_install() { | ||
SYSTEMD_CONFIG="[Unit] | ||
Description=2ip speed | ||
After=network.target | ||
[Service] | ||
Type=simple | ||
ExecStart=$INSTALL_PATH/speedtest --port=$PORT --email=$NOTIFICATION_EMAIL | ||
ExecReload=/bin/kill -HUP \$MAINPID | ||
User=nobody | ||
Restart=always | ||
RestartSec=3 | ||
LimitNOFILE=8192 | ||
[Install] | ||
WantedBy=multi-user.target | ||
" | ||
[ -w /etc/systemd/system/ ] && \ | ||
echo "$SYSTEMD_CONFIG" > "/etc/systemd/system/2ip-speed.service" || \ | ||
sh -c "echo '$SYSTEMD_CONFIG' > /etc/systemd/system/2ip-speed.service" | ||
|
||
systemctl daemon-reload | ||
systemctl start 2ip-speed.service | ||
systemctl status 2ip-speed.service | ||
|
||
echo "----------------------------------" | ||
echo " Fin " | ||
echo "----------------------------------" | ||
|
||
return; | ||
;; | ||
*) | ||
esac | ||
} | ||
|
||
get_bin() { | ||
echo "----------------------------------" | ||
echo " 2ip server binary downloading " | ||
echo "----------------------------------" | ||
|
||
curl -L "https://github.com/bis-gmbh/2ip-speed/releases/download/v3.0/2ip.speed.$OS.$MACHINE_TYPE.tar.gz" | tar zx | ||
|
||
mkdir -p "$INSTALL_PATH" | ||
mv speedtest "$INSTALL_PATH" | ||
|
||
post_install | ||
} | ||
|
||
install() { | ||
get_bin | ||
} | ||
|
||
select_os() { | ||
echo "Please select server operation system [default: linux x86_64]:" | ||
echo "1) Linux x86_64" | ||
echo "2) Linux x86_32" | ||
|
||
read -r -p "Select platform [1-5]: " NUMBER; | ||
case $NUMBER in | ||
1) OS='linux'; | ||
MACHINE_TYPE='x86_64';; | ||
2) OS='linux'; | ||
MACHINE_TYPE='x86_32';; | ||
*) echo "FATAL: Please try to enter digit."; | ||
exit ;; | ||
esac | ||
install | ||
} | ||
|
||
pre_install() { | ||
if [ "$(id -u)" != "0" ]; then | ||
echo "This script must be run as root" 1>&2 | ||
exit 1 | ||
fi | ||
|
||
read -r -p "Please, enter email for notifications [optional: example@example.com]: " EMAIL; | ||
if [ ! -z $EMAIL ]; then | ||
NOTIFICATION_EMAIL=$EMAIL | ||
fi | ||
|
||
read -r -p "Binary installation path [default: $INSTALL_PATH]: " PROMPT_PATH; | ||
if [ ! -z $PROMPT_PATH ]; then | ||
INSTALL_PATH=$PROMPT_PATH | ||
fi | ||
|
||
read -r -p "2ip speed server port [default: 8002]: " PORT_NEW; | ||
if [ ! -z $PORT_NEW ]; then | ||
PORT=$PORT_NEW | ||
fi | ||
|
||
if [ $OS = "linux" ]; then | ||
if [ $MACHINE_TYPE = "x86_32" ] || [ $MACHINE_TYPE = "x86_64" ]; then | ||
install | ||
else | ||
select_os | ||
fi | ||
else | ||
select_os | ||
fi | ||
} | ||
|
||
pre_install |