重构代码
This commit is contained in:
parent
adca43cbba
commit
f3bc373407
22
bin/create_config.sh
Normal file
22
bin/create_config.sh
Normal file
@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
init(){
|
||||
script_dir=$(cd "$(dirname "$0")"; pwd) # 脚本文件绝对路径
|
||||
source "$script_dir/utils/base.sh"
|
||||
|
||||
# 检查jq是否安装
|
||||
check_jq
|
||||
|
||||
# 生成uui, 写入到config.json文件
|
||||
bash $script_dir/update_uuid.sh
|
||||
|
||||
# 生成密钥对, 修改config.json中的密钥属性
|
||||
bash $script_dir/update_key.sh
|
||||
|
||||
# 设置端口
|
||||
bash $script_dir/update_port.sh
|
||||
|
||||
echo "初始化完成"
|
||||
}
|
||||
|
||||
init
|
||||
19
bin/init.sh
19
bin/init.sh
@ -1,19 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
|
||||
script_dir=$(cd "$(dirname "$0")"; pwd) # 脚本文件绝对路径
|
||||
source "$script_dir/utils/base.sh"
|
||||
|
||||
# 检查jq是否安装
|
||||
check_jq
|
||||
|
||||
# 生成uui, 写入到config.json文件
|
||||
bash $script_dir/update_uuid.sh
|
||||
|
||||
# 生成密钥对, 修改config.json中的密钥属性
|
||||
bash $script_dir/update_key.sh
|
||||
|
||||
# 设置端口
|
||||
bash $script_dir/update_port.sh
|
||||
|
||||
echo "初始化完成"
|
||||
@ -13,7 +13,7 @@ if [ "$uuid" = "你的UUID" ] || [ -z "$uuid" ]; then
|
||||
# 执行初始化脚本
|
||||
echo "配置未初始化"
|
||||
echo "正在执行初始化脚本..."
|
||||
# bash "$script_dir/init.sh"
|
||||
bash "$script_dir/create_config.sh"
|
||||
fi
|
||||
|
||||
## 启动docker容器
|
||||
|
||||
Loading…
Reference in New Issue
Block a user