Files
CyberPanel/cyberpanel_upgrade.sh

266 lines
7.9 KiB
Bash
Raw Normal View History

2020-01-16 23:55:54 +01:00
#!/bin/bash
2020-01-17 16:01:24 +01:00
#CyberPanel Upgrade script
2020-01-16 23:55:54 +01:00
2020-01-17 16:01:24 +01:00
export LC_CTYPE=en_US.UTF-8
SUDO_TEST=$(set)
2020-01-16 23:55:54 +01:00
SERVER_OS='Undefined'
OUTPUT=$(cat /etc/*release)
2020-01-29 12:32:55 +05:00
TEMP=$(curl --silent https://cyberpanel.net/version.txt)
2020-01-29 12:42:54 +05:00
BRANCH_NAME=v${TEMP:12:3}.${TEMP:25:1}
2020-01-16 23:55:54 +01:00
input_branch() {
echo -e "\nPress Enter key to continue with latest version or Enter specific version such as: \e[31m1.9.4\e[39m , \e[31m1.9.5\e[39m ...etc"
echo -e "\nIf nothing is input in 10 seconds , script will proceed with latest stable. "
echo -e "\nPlease press Enter key , or specify a version number ,or wait for 10 seconds timeout: "
printf "%s" ""
read -t 10 TMP_YN
if [[ $TMP_YN == "" ]] ; then
BRANCH_NAME="v${TEMP:12:3}.${TEMP:25:1}"
echo -e "\nBranch name set to $BRANCH_NAME"
else
base_number="1.9.3"
if [[ $TMP_YN == *.*.* ]] ; then
#check input if it's valid format as X.Y.Z
output=$(awk -v num1="$base_number" -v num2="$TMP_YN" '
BEGIN {
print "num1", (num1 < num2 ? "<" : ">="), "num2"
}
')
if [[ $output == *">="* ]] ; then
echo -e "\nYou must use version number higher than 1.9.4"
exit
else
BRANCH_NAME="v$TMP_YN"
echo "set branch name to $BRANCH_NAME"
fi
else
echo -e "\nPlease input a valid format version number."
exit
fi
fi
}
2020-01-18 00:11:07 +01:00
install_utility() {
if [[ ! -f /usr/bin/cyberpanel_utility ]] ; then
wget -q -O /usr/bin/cyberpanel_utility https://cyberpanel.sh/misc/cyberpanel_utility.sh
chmod 700 /usr/bin/cyberpanel_utility
fi
}
2020-01-17 16:01:24 +01:00
check_root() {
echo -e "\nChecking root privileges...\n"
if echo $SUDO_TEST | grep SUDO > /dev/null ; then
echo -e "\nYou are using SUDO , please run as root user...\n"
echo -e "If you don't have direct access to root user, please run \e[31msudo su -\e[39m command and then run upgrade command again."
exit
fi
if [[ $(id -u) != 0 ]] > /dev/null; then
echo -e "\nYou must use root user to upgrade CyberPanel...\n"
exit
else
echo -e "\nYou are runing as root...\n"
fi
}
2020-01-16 23:55:54 +01:00
check_return() {
#check previous command result , 0 = ok , non-0 = something wrong.
if [[ $? -eq "0" ]] ; then
:
else
echo -e "\ncommand failed, exiting..."
exit
fi
}
input_branch
2020-01-17 16:01:24 +01:00
check_root
2020-01-16 23:55:54 +01:00
echo -e "\nChecking OS..."
OUTPUT=$(cat /etc/*release)
if echo $OUTPUT | grep -q "CentOS Linux 7" ; then
echo -e "\nDetecting CentOS 7.X...\n"
SERVER_OS="CentOS7"
yum clean all
yum update -y
elif echo $OUTPUT | grep -q "CloudLinux 7" ; then
echo -e "\nDetecting CloudLinux 7.X...\n"
SERVER_OS="CentOS7"
yum clean all
yum update -y
elif echo $OUTPUT | grep -q "CentOS Linux 8" ; then
echo -e "\nDetecting CentOS 8.X...\n"
SERVER_OS="CentOS8"
yum clean all
yum update -y
elif echo $OUTPUT | grep -q "Ubuntu 18.04" ; then
echo -e "\nDetecting Ubuntu 18.04...\n"
SERVER_OS="Ubuntu"
else
cat /etc/*release
echo -e "\nUnable to detect your OS...\n"
echo -e "\nCyberPanel is supported on Ubuntu 18.04, CentOS 7.x, CentOS 8.x and CloudLinux 7.x...\n"
exit 1
fi
if [ $SERVER_OS = "CentOS7" ] ; then
yum -y install yum-utils
yum -y groupinstall development
yum -y install https://centos7.iuscommunity.org/ius-release.rpm
yum -y install python36u python36u-pip python36u-devel
elif [ $SERVER_OS = "CentOS8" ] ; then
yum install -y wget strace htop net-tools telnet curl which bc telnet htop libevent-devel gcc libattr-devel xz-devel mariadb-devel curl-devel git platform-python-devel tar
dnf --enablerepo=PowerTools install gpgme-devel -y
dnf install python3 -y
else
apt update -y
DEBIAN_FRONTEND=noninteractive apt upgrade -y
DEBIAN_FRONTEND=noninteracitve apt install -y htop telnet python-mysqldb python-dev libcurl4-gnutls-dev libgnutls28-dev libgcrypt20-dev libattr1 libattr1-dev liblzma-dev libgpgme-dev libmariadbclient-dev libcurl4-gnutls-dev libssl-dev nghttp2 libnghttp2-dev idn2 libidn2-dev libidn2-0-dev librtmp-dev libpsl-dev nettle-dev libgnutls28-dev libldap2-dev libgssapi-krb5-2 libk5crypto3 libkrb5-dev libcomerr2 libldap2-dev python-gpg python python-minimal python-setuptools virtualenv python-dev python-pip git
DEBIAN_FRONTEND=noninteractive apt install -y python3-pip
DEBIAN_FRONTEND=noninteractive apt install -y build-essential libssl-dev libffi-dev python3-dev
DEBIAN_FRONTEND=noninteractive apt install -y python3-venv
fi
if [ $SERVER_OS = "Ubuntu" ] ; then
pip3 install virtualenv
check_return
else
pip3.6 install virtualenv
check_return
fi
rm -rf /usr/local/CyberPanel
virtualenv -p /usr/bin/python3 --system-site-packages /usr/local/CyberPanel
check_return
rm -f requirments.txt
2020-01-22 14:22:06 +05:00
wget https://raw.githubusercontent.com/usmannasir/cyberpanel/$BRANCH_NAME/requirments.txt
2020-01-16 23:55:54 +01:00
. /usr/local/CyberPanel/bin/activate
check_return
if [ $SERVER_OS = "Ubuntu" ] ; then
. /usr/local/CyberPanel/bin/activate
check_return
pip3 install --ignore-installed -r requirments.txt
check_return
else
source /usr/local/CyberPanel/bin/activate
check_return
pip3.6 install --ignore-installed -r requirments.txt
check_return
fi
virtualenv -p /usr/bin/python3 --system-site-packages /usr/local/CyberPanel
check_return
rm -rf upgrade.py
2020-01-22 14:22:06 +05:00
wget https://raw.githubusercontent.com/usmannasir/cyberpanel/$BRANCH_NAME/plogical/upgrade.py
/usr/local/CyberPanel/bin/python upgrade.py $BRANCH_NAME
2020-01-16 23:55:54 +01:00
check_return
##
virtualenv -p /usr/bin/python3 /usr/local/CyberCP
check_return
2020-01-22 14:22:06 +05:00
wget -O requirements.txt https://raw.githubusercontent.com/usmannasir/cyberpanel/$BRANCH_NAME/requirments.txt
2020-01-16 23:55:54 +01:00
if [ $SERVER_OS = "Ubuntu" ] ; then
. /usr/local/CyberCP/bin/activate
check_return
pip3 install --ignore-installed -r requirments.txt
check_return
else
source /usr/local/CyberCP/bin/activate
check_return
pip3.6 install --ignore-installed -r requirments.txt
check_return
fi
##
2020-01-24 21:12:25 +05:00
rm -f wsgi-lsapi-1.5.tgz
2020-01-16 23:55:54 +01:00
rm -rf wsgi-lsapi-1.4
2020-01-24 21:12:25 +05:00
wget http://www.litespeedtech.com/packages/lsapi/wsgi-lsapi-1.5.tgz
tar xf wsgi-lsapi-1.5.tgz
cd wsgi-lsapi-1.5
2020-01-16 23:55:54 +01:00
/usr/local/CyberPanel/bin/python ./configure.py
make
cp lswsgi /usr/local/CyberCP/bin/
2020-01-31 11:41:58 +01:00
sed -i 's|python2|python|g' /usr/bin/adminPass
2020-01-16 23:55:54 +01:00
chmod 700 /usr/bin/adminPass
2020-02-01 15:48:29 +01:00
if [[ ! -f /usr/sbin/ipset ]] && [[ $SERVER_OS == "Ubuntu" ]] ; then
ln -s /sbin/ipset /usr/sbin/ipset
fi
2020-01-23 22:32:39 +01:00
if [[ -f /etc/cyberpanel/webadmin_passwd ]] ; then
chmod 600 /etc/cyberpanel/webadmin_passwd
fi
2020-01-20 21:34:25 +01:00
if [[ -f /etc/pure-ftpd/pure-ftpd.conf ]] ; then
sed -i 's|NoAnonymous no|NoAnonymous yes|g' /etc/pure-ftpd/pure-ftpd.conf
fi
2020-01-23 22:32:39 +01:00
install_utility
2020-01-18 00:11:07 +01:00
2020-02-01 17:08:35 +01:00
if [[ $SERVER_OS == "CentOS7" ]] ; then
yum list installed lsphp74-devel
if [[ $? != "0" ]] ; then
yum install -y lsphp74-devel
fi
fi
if [[ $SERVER_OS == "Ubuntu" ]] ; then
dpkg -l lsphp74-dev
if [[ $? != "0" ]] ; then
apt install -y lsphp74-dev
fi
fi
2020-01-28 18:31:54 +01:00
if [[ ! -f /usr/local/lsws/lsphp74/lib64/php/modules/zip.so ]] && [[ $SERVER_OS == "CentOS7" ]] ; then
2020-01-30 19:16:32 +01:00
yum list installed libzip-devel
if [[ $? == "0" ]] ; then
yum remove -y libzip-devel
fi
2020-02-01 17:08:35 +01:00
2020-01-28 18:26:00 +01:00
yum install -y http://packages.psychotic.ninja/7/plus/x86_64/RPMS/libzip-0.11.2-6.el7.psychotic.x86_64.rpm
yum install -y http://packages.psychotic.ninja/7/plus/x86_64/RPMS/libzip-devel-0.11.2-6.el7.psychotic.x86_64.rpm
2020-02-06 19:15:33 +01:00
yum install lsphp74-devel
if [[ ! -d /usr/local/lsws/lsphp74/tmp ]] ; then
mkdir /usr/local/lsws/lsphp74/tmp
fi
/usr/local/lsws/lsphp74/bin/pecl channel-update pecl.php.net
/usr/local/lsws/lsphp74/bin/pear config-set temp_dir /usr/local/lsws/lsphp74/tmp
2020-01-28 18:26:00 +01:00
/usr/local/lsws/lsphp74/bin/pecl install zip
2020-02-01 17:28:11 +01:00
if [[ $? == 0 ]] ; then
2020-02-06 19:15:33 +01:00
echo "extension=zip.so" > /usr/local/lsws/lsphp74/etc/php.d/20-zip.ini
chmod 755 /usr/local/lsws/lsphp74/lib64/php/modules/zip.so
2020-02-01 17:28:11 +01:00
else
2020-02-06 19:15:33 +01:00
echo -e "\nlsphp74-zip compilation failed..."
2020-02-02 15:13:46 +01:00
fi
2020-01-28 18:26:00 +01:00
fi
#fix the lsphp74-zip missing issue.
2020-01-18 00:11:07 +01:00
2020-01-16 23:55:54 +01:00
##
systemctl restart lscpd
rm -f requirements.txt
rm -f requirments.txt
rm -f upgrade.py
rm -rf wsgi-lsapi-1.5
rm -f wsgi-lsapi-1.5.tgz
rm -f /usr/local/composer.sh
# clean up
2020-01-16 23:55:54 +01:00
echo "###################################################################"
echo " CyberPanel Upgraded "
echo "###################################################################"