1 Star 0 Fork 37

jsaon_wei / ltnmp

forked from 技安未来 / ltnmp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
update.sh 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
技安未来 提交于 2015-11-23 13:19 . 格式统一调整
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
## ltnmp一键安装包
## 更新脚本
## by 技安(Andy) (http://www.moqifei.com)
## 检测是否是root账户权限
if [ $(id -u) != "0" ]; then
echo "Error: You must be root to run this script, please use root to install ltnmp"
exit 1
fi
## 当前路径
current_dir=$(pwd)
## 加载初始化脚本
. scripts/bootstrap.sh
. scripts/version.sh
## 检测系统参数
run
if [ "${DISTRO}" = "unknow" ]; then
echo "Unable to get the release version of the operating system, or the system release version is not supported"
exit 1
fi
## 加载各个发行版,数据库,PHP,web服务器等脚本
. scripts/${ANDY}.sh
. scripts/mariadb.sh
. scripts/mysql.sh
. scripts/tengine.sh
. scripts/nginx.sh
. scripts/php.sh
. scripts/phpmyadmin.sh
. scripts/end.sh
clear
echo "-------------------------------------------------------------------------"
echo ""
echo " ltnmp v${ltnmp_version} for ${DISTRO} Linux Server"
echo " Automatic compilation(Tengine/nginx)+php+(Mariadb/Mysql)"
echo " By:Andy http://www.moqifei.com"
echo ""
echo "-------------------------------------------------------------------------"
echo ""
echo " 1 : update ${ltnmp_php}"
echo " 2 : update ${ltnmp_tengine}"
echo ""
read -p ">>Enter your choice number (or input exit): " action
case ${action} in
1 )
/root/ltnmp stop
install_php
/root/ltnmp start
;;
2 )
/root/ltnmp stop
install_tengine
/root/ltnmp start
;;
* )
exit 1
;;
esac
Shell
1
https://gitee.com/jason_wei/ltnmp.git
git@gitee.com:jason_wei/ltnmp.git
jason_wei
ltnmp
ltnmp
master

搜索帮助