Simple Linux Panel
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.
 
 
 
 
 
 
mdserver-web/plugins/msonedrive/install.sh

42 lines
804 B

#!/bin/bash
PATH=/www/server/panel/pyenv/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
curPath=`pwd`
rootPath=$(dirname "$curPath")
rootPath=$(dirname "$rootPath")
serverPath=$(dirname "$rootPath")
VERSION=$2
# cd /www/server/mdserver-web/plugins/msonedrive && bash install.sh install 1.0
if [ -f ${rootPath}/bin/activate ];then
source ${rootPath}/bin/activate
fi
Install_App()
{
pip install requests-oauthlib==1.3.0
mkdir -p $serverPath/msonedrive
echo '正在安装脚本文件...'
echo "${VERSION}" > $serverPath/msonedrive/version.pl
echo '安装完成'
echo "Successify"
}
Uninstall_App()
{
rm -rf $serverPath/msonedrive
}
if [ "${1}" == 'install' ];then
Install_App
elif [ "${1}" == 'uninstall' ];then
Uninstall_App
else
echo 'Error!';
fi