forked from maybe1229/jd-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
first_run.sh
executable file
·118 lines (105 loc) · 3.74 KB
/
first_run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/bash
## 修改日期:2020-11-15
## 作者:Evine Deng <[email protected]>
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/data/data/com.termux/files/usr/bin"
export LC_ALL=C
RootDir=$(cd $(dirname $0); pwd)
ShellDir="${RootDir}/shell"
LogDir="${RootDir}/log"
ScriptsDir="${RootDir}/scripts"
isDocker=$(cat /proc/1/cgroup | grep docker)
## 尝试自动恢复任务,如文件夹不存在则尝试克隆
function Detect_Cron {
if [ -d ${ScriptsDir} ] && [ -d ${ShellDir} ] && [ -f ${RootDir}/crontab.list ] && [ -n "${isDocker}" ]
then
echo -e "检测到本机为容器,并且${ScriptsDir}、${ShellDir}、${RootDir}/crontab.list均存在,开始自动恢复定时任务...\n"
crontab ${RootDir}/crontab.list
echo -e "当前的定时任务如下:\n"
crontab -l
echo -e "成功恢复定时任务...\n"
elif [ -d ${ScriptsDir} ] && [ -d ${ShellDir} ] && [ -f ${RootDir}/crontab.list ] && [ -z "${isDocker}" ]
then
echo -e "检测到本机为物理机,虽然${ScriptsDir}、${ShellDir}、${RootDir}/crontab.list均存在...\n但为防止破坏物理机上本身已经存在的定时任务,跳过恢复定时任务,请手动添加...\n"
echo -e "3...\n"
sleep 1
echo -e "2...\n"
sleep 1
echo -e "1...\n"
sleep 1
else
if [ ! -d ${ScriptsDir} ]; then
echo -e "${ScriptsDir} 目录不存在,开始克隆...\n"
git clone https://github.com/lxk0301/jd_scripts ${ScriptsDir}
echo
fi
if [ ! -d ${ShellDir} ]; then
echo -e "${ShellDir} 目录不存在,开始克隆...\n"
git clone https://github.com/EvineDeng/jd-base ${ShellDir}
echo
fi
fi
}
## 创建初始日志目录
function Make_LogDir {
## 读取 ${ScriptsDir}/docker/crontab_list.sh 中的 js 脚本定时任务为初始任务清单
if [ -f ${ScriptsDir}/docker/crontab_list.sh ]; then
JsList=$(cat ${ScriptsDir}/docker/crontab_list.sh | grep -E "jd_.+\.js" | perl -pe "s|.+(jd_.+)\.js.+|\1|" | sort)
fi
if [ -n "${JsList}" ]
then
for Task in ${JsList}; do
if [ ! -d ${LogDir}/${Task} ]
then
echo -e "创建 ${LogDir}/${Task} 日志目录...\n"
mkdir -p ${LogDir}/${Task}
if [ -z "${isDocker}" ]; then
sleep 1
fi
else
echo -e "日志目录 ${LogDir}/${Task} 已存在,跳过创建...\n"
if [ -z "${isDocker}" ]; then
sleep 1
fi
fi
done
else
if [ -z "${isDocker}" ]
then
echo -e "${ScriptsDir}/docker/crontab_list.sh 不存在,可能是 js 脚本克隆不正常,请删除 ${ScriptsDir} 文件夹后重新运行本脚本...\n"
else
echo -e "${ScriptsDir}/docker/crontab_list.sh 不存在,可能是 js 脚本克隆不正常,请删除 ${ScriptsDir} 文件夹后重新启动容器...\n"
fi
fi
}
## 复制初始任务脚本
function Copy_Shell {
if [ -s ${ShellDir}/jd.sh.sample ]
then
if [ -n "${JsList}" ]; then
for Task in ${JsList}; do
cp -fv "${ShellDir}/jd.sh.sample" "${ShellDir}/${Task}.sh"
chmod +x "${ShellDir}/${Task}.sh"
echo
if [ -z "${isDocker}" ]; then
sleep 1
fi
done
echo -e "脚本执行成功,请按照 Readme 教程继续配置...\n"
fi
else
if [ -z "${isDocker}" ]
then
echo -e "${ShellDir}/jd.sh.sample 不存在或内容为空,可能是 shell 脚本克隆不正常,请删除 ${ShellDir} 文件夹后重新运行本脚本...\n"
else
echo -e "${ShellDir}/jd.sh.sample 不存在或内容为空,可能是 shell 脚本克隆不正常,请删除 ${ShellDir} 文件夹后重新启动容器...\n"
fi
fi
}
cd ${RootDir}
Detect_Cron
if [ $? -eq 0 ]; then
Make_LogDir
fi
if [ $? -eq 0 ]; then
Copy_Shell
fi