修复share.sh

This commit is contained in:
whyour 2021-05-02 00:00:25 +08:00
parent e4530d53ac
commit 273ab27943
2 changed files with 7 additions and 9 deletions

View File

@ -5,11 +5,9 @@ echo -e "======================1. 初始化命令========================\n"
dir_shell=/ql/shell dir_shell=/ql/shell
. $dir_shell/share.sh . $dir_shell/share.sh
link_shell link_shell
echo
echo -e "======================2. 更新源代码========================\n" echo -e "======================2. 更新源代码========================\n"
ql update ql update
echo
echo -e "======================3. 检测配置文件========================\n" echo -e "======================3. 检测配置文件========================\n"
fix_config fix_config
@ -17,16 +15,15 @@ cp -fv $dir_root/docker/front.conf /etc/nginx/conf.d/front.conf
echo -e "======================4. 启动nginx========================\n" echo -e "======================4. 启动nginx========================\n"
nginx -c /etc/nginx/nginx.conf nginx -c /etc/nginx/nginx.conf
echo
echo -e "======================5. 启动控制面板========================\n" echo -e "======================5. 启动控制面板========================\n"
pm2 start $dir_root/build/app.js -n panel pm2 start $dir_root/build/app.js -n panel
echo -e "控制面板启动成功...\n" echo -e "控制面板启动成功...\n"
echo -e "\n容器启动成功...\n" echo -e "\n容器启动成功..."
echo -e "\n请先访问5700端口登录面板成功之后先手动执行一次git_pull命令...\n" echo -e "\n请先访问5700端口登录面板成功之后先手动执行一次git_pull命令..."
echo -e "\n如果需要启动挂机程序手动执行docker exec -it qinglong js hangup...\n" echo -e "\n如果需要启动挂机程序手动执行docker exec -it qinglong js hangup..."
echo -e "\n或者去cron管理搜索hangup手动执行挂机任务...\n" echo -e "\n或者去cron管理搜索hangup手动执行挂机任务..."
crond -f crond -f

View File

@ -67,8 +67,9 @@ import_config_and_check () {
## 创建目录,$1目录的绝对路径 ## 创建目录,$1目录的绝对路径
make_dir () { make_dir () {
local dir=$1 local dir=$1
[ ! -d $dir ] && mkdir -p $dir if [[ ! -d $dir ]]; then
echo mkdir -p $dir
fi
} }
## 检测termux ## 检测termux