mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
924 B
35 lines
924 B
7 years ago
|
#!/bin/bash
|
||
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
|
||
|
export PATH
|
||
|
install_tmp='/tmp/bt_install.pl'
|
||
|
public_file=/www/server/panel/install/public.sh
|
||
|
if [ ! -f $public_file ];then
|
||
|
wget -O $public_file http://download.bt.cn/install/public.sh -T 5;
|
||
|
fi
|
||
|
. $public_file
|
||
|
|
||
|
download_Url=$NODE_URL
|
||
|
|
||
|
Install_webssh()
|
||
|
{
|
||
|
mkdir -p /www/server/panel/plugin/webssh
|
||
|
echo '正在安装脚本文件...' > $install_tmp
|
||
|
wget -O /www/server/panel/plugin/webssh/index.html $download_Url/install/plugin/webssh/index.html -T 5
|
||
|
wget -O /www/server/panel/plugin/webssh/info.json $download_Url/install/plugin/webssh/info.json -T 5
|
||
|
wget -O /www/server/panel/plugin/webssh/icon.png $download_Url/install/plugin/webssh/icon.png -T 5
|
||
|
echo '安装完成' > $install_tmp
|
||
|
}
|
||
|
|
||
|
Uninstall_webssh()
|
||
|
{
|
||
|
rm -rf /www/server/panel/plugin/webssh
|
||
|
}
|
||
|
|
||
|
|
||
|
action=$1
|
||
|
if [ "${1}" == 'install' ];then
|
||
|
Install_webssh
|
||
|
else
|
||
|
Uninstall_webssh
|
||
|
fi
|