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.
59 lines
1.6 KiB
59 lines
1.6 KiB
#!/bin/bash
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:/opt/homebrew/bin
|
|
export PATH
|
|
|
|
# cd /Users/midoks/Desktop/mwdev/server/mdserver-web/plugins/openresty && bash install.sh install 1.21.4
|
|
# cd /www/server/mdserver-web/plugins/openresty && bash install.sh install 1.21.4
|
|
|
|
curPath=`pwd`
|
|
rootPath=$(dirname "$curPath")
|
|
rootPath=$(dirname "$rootPath")
|
|
serverPath=$(dirname "$rootPath")
|
|
|
|
sysName=`uname`
|
|
action=$1
|
|
type=$2
|
|
|
|
VERSION=$2
|
|
openrestyDir=${serverPath}/source/openresty
|
|
|
|
if id www &> /dev/null ;then
|
|
echo "www uid is `id -u www`"
|
|
echo "www shell is `grep "^www:" /etc/passwd |cut -d':' -f7 `"
|
|
else
|
|
groupadd www
|
|
useradd -g www -s /bin/bash www
|
|
fi
|
|
|
|
if [ "${2}" == "" ];then
|
|
echo '缺少安装脚本版本...'
|
|
exit 0
|
|
fi
|
|
|
|
if [ "${action}" == "uninstall" ];then
|
|
if [ -f /usr/lib/systemd/system/openresty.service ] || [ -f /lib/systemd/system/openresty.service ];then
|
|
systemctl stop openresty
|
|
rm -rf /usr/systemd/system/openresty.service
|
|
rm -rf /lib/systemd/system/openresty.service
|
|
systemctl daemon-reload
|
|
fi
|
|
|
|
if [ -f $serverPath/openresty/init.d/openresty ];then
|
|
$serverPath/openresty/init.d/openresty stop
|
|
fi
|
|
|
|
rm -rf $serverPath/openresty
|
|
fi
|
|
|
|
sh -x $curPath/versions/$2/install.sh $1
|
|
|
|
if [ "${action}" == "install" ] && [ -d $serverPath/openresty ];then
|
|
echo "${VERSION}" > $serverPath/openresty/version.pl
|
|
|
|
mkdir -p $serverPath/web_conf/php/conf
|
|
echo 'set $PHP_ENV 0;' > $serverPath/web_conf/php/conf/enable-php-00.conf
|
|
|
|
#初始化
|
|
cd ${rootPath} && python3 ${rootPath}/plugins/openresty/index.py start
|
|
cd ${rootPath} && python3 ${rootPath}/plugins/openresty/index.py initd_install
|
|
fi
|
|
|