Fetch the repository succeeded.
This action will force synchronization from JPressProjects/jpress, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#!/bin/bash
# ----------------------------------------------------------------------
# author: yangfuhai
# email: fuhai999@gmail.com
# use : yum install -y wget && wget https://gitee.com/fuhai/jpress/raw/master/upgrade.sh && bash upgrade.sh newPath oldPath
# ----------------------------------------------------------------------
newPath="$1"
oldPath="$2"
if [[ "$newPath" == "" ]]; then
echo "./please designated new jpress path"
exit 0
fi
if [ ! -f "$newPath/robots.txt" ];then
echo "$newPath is not a jpress path"
exit 0
fi
if [[ "$oldPath" == "" ]]; then
echo "./please designated old jpress path"
exit 0
fi
if [ ! -f "$oldPath/WEB-INF/classes/jboot-simple.properties" ];then
echo "$oldPath is not a jpress path"
exit 0
fi
bakpath=""
if [[ $oldPath == */ ]]; then
backpath=${oldPath:0-0:${#oldPath}-1}_bak
else
bakpath=${oldPath}_bak
fi
# 备份 jpress
echo "backup old jpress to $bakpath"
cp -rf ${oldPath} ${bakpath}
# 删除旧的文件
rm -rf ${oldPath}/WEB-INF/lib
rm -rf ${oldPath}/WEB-INF/install
rm -rf ${oldPath}/WEB-INF/views
rm -rf ${oldPath}/WEB-INF/web.xml
rm -rf ${oldPath}/static
echo "start upgrade ..."
# 拷贝新的jpress
cp -rf ${newPath}/WEB-INF/lib ${oldPath}/WEB-INF/lib
cp -rf ${newPath}/WEB-INF/install ${oldPath}/WEB-INF/install
cp -rf ${newPath}/WEB-INF/views ${oldPath}/WEB-INF/views
cp -rf ${newPath}/WEB-INF/web.xml ${oldPath}/WEB-INF/web.xml
cp -rf ${newPath}/static ${oldPath}/static
cp -rf ${newPath}/robots.txt ${oldPath}/robots.txt
echo "upgrade finished, please restart tomcat..."
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。