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.
77 lines
1.4 KiB
77 lines
1.4 KiB
#!/bin/bash
|
|
PATH=/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")
|
|
|
|
install_tmp=${rootPath}/tmp/mw_install.pl
|
|
VERSION=$2
|
|
|
|
cpu_arch=`arch`
|
|
if [[ $cpu_arch != "x86_64" ]];then
|
|
echo 'Does not support non-x86 system installation'
|
|
exit 0
|
|
fi
|
|
|
|
# if [ -f "/usr/bin/apt-get" ];then
|
|
# systemver='ubuntu'
|
|
# elif [ -f "/etc/redhat-release" ];then
|
|
# systemver=`cat /etc/redhat-release|sed -r 's/.* ([0-9]+)\..*/\1/'`
|
|
# postfixver=`postconf mail_version|sed -r 's/.* ([0-9\.]+)$/\1/'`
|
|
# else
|
|
# echo 'Unsupported system version'
|
|
# exit 0
|
|
# fi
|
|
|
|
bash ${rootPath}/scripts/getos.sh
|
|
OSNAME=`cat ${rootPath}/data/osname.pl`
|
|
OSNAME_ID=`cat /etc/*-release | grep VERSION_ID | awk -F = '{print $2}' | awk -F "\"" '{print $2}'`
|
|
|
|
|
|
|
|
Install_debain(){
|
|
|
|
}
|
|
|
|
Install_App()
|
|
{
|
|
echo '正在安装脚本文件...' > $install_tmp
|
|
mkdir -p $serverPath/source
|
|
|
|
if [[ $OSNAME = "centos" ]]; then
|
|
|
|
if [[ $OSNAME_ID == "7" ]];then
|
|
Install_centos7
|
|
fi
|
|
|
|
if [[ $OSNAME_ID == "8" ]];then
|
|
Install_centos8
|
|
fi
|
|
|
|
elif [[ $OSNAME = "debian" ]]; then
|
|
Install_debain
|
|
else
|
|
Install_ubuntu
|
|
fi
|
|
}
|
|
|
|
Uninstall_App()
|
|
{
|
|
|
|
if [ -f $serverPath/mail/initd/mail ];then
|
|
$serverPath/mail/initd/mail stop
|
|
fi
|
|
|
|
rm -rf $serverPath/mail
|
|
echo "Uninstall_Mail" > $install_tmp
|
|
}
|
|
|
|
action=$1
|
|
if [ "${1}" == 'install' ];then
|
|
Install_App
|
|
else
|
|
Uninstall_App
|
|
fi
|
|
|