添加重置登录错误次数命令

This commit is contained in:
hanhh 2021-08-24 18:20:36 +08:00
parent fb0c1c6993
commit f78d72db4c

View File

@ -434,23 +434,23 @@ main() {
local begin_time=$(date '+%Y-%m-%d %H:%M:%S') local begin_time=$(date '+%Y-%m-%d %H:%M:%S')
case $p1 in case $p1 in
update) update)
echo -e "## 开始执行... $begin_time\n" >> $log_path echo -e "## 开始执行... $begin_time\n" >>$log_path
[[ -f $task_error_log_path ]] && cat $task_error_log_path >> $log_path [[ -f $task_error_log_path ]] && cat $task_error_log_path >>$log_path
update_qinglong "$2" >> $log_path update_qinglong "$2" >>$log_path
;; ;;
extra) extra)
echo -e "## 开始执行... $begin_time\n" >> $log_path echo -e "## 开始执行... $begin_time\n" >>$log_path
[[ -f $task_error_log_path ]] && cat $task_error_log_path >> $log_path [[ -f $task_error_log_path ]] && cat $task_error_log_path >>$log_path
run_extra_shell >> $log_path run_extra_shell >>$log_path
;; ;;
repo) repo)
get_user_info get_user_info
get_uniq_path "$p2" "$p6" get_uniq_path "$p2" "$p6"
log_path="$dir_log/update/${log_time}_${uniq_path}.log" log_path="$dir_log/update/${log_time}_${uniq_path}.log"
echo -e "## 开始执行... $begin_time\n" >> $log_path echo -e "## 开始执行... $begin_time\n" >>$log_path
[[ -f $task_error_log_path ]] && cat $task_error_log_path >> $log_path [[ -f $task_error_log_path ]] && cat $task_error_log_path >>$log_path
if [[ -n $p2 ]]; then if [[ -n $p2 ]]; then
update_repo "$p2" "$p3" "$p4" "$p5" "$p6" >> $log_path update_repo "$p2" "$p3" "$p4" "$p5" "$p6" >>$log_path
else else
echo -e "命令输入错误...\n" echo -e "命令输入错误...\n"
usage usage
@ -460,29 +460,35 @@ main() {
get_user_info get_user_info
get_uniq_path "$p2" get_uniq_path "$p2"
log_path="$dir_log/update/${log_time}_${uniq_path}.log" log_path="$dir_log/update/${log_time}_${uniq_path}.log"
echo -e "## 开始执行... $begin_time\n" >> $log_path echo -e "## 开始执行... $begin_time\n" >>$log_path
[[ -f $task_error_log_path ]] && cat $task_error_log_path >> $log_path [[ -f $task_error_log_path ]] && cat $task_error_log_path >>$log_path
if [[ -n $p2 ]]; then if [[ -n $p2 ]]; then
update_raw "$p2" >> $log_path update_raw "$p2" >>$log_path
else else
echo -e "命令输入错误...\n" echo -e "命令输入错误...\n"
usage usage
fi fi
;; ;;
rmlog) rmlog)
echo -e "## 开始执行... $begin_time\n" >> $log_path echo -e "## 开始执行... $begin_time\n" >>$log_path
[[ -f $task_error_log_path ]] && cat $task_error_log_path >> $log_path [[ -f $task_error_log_path ]] && cat $task_error_log_path >>$log_path
. $dir_shell/rmlog.sh "$p2" >> $log_path . $dir_shell/rmlog.sh "$p2" >>$log_path
;; ;;
bot) bot)
echo -e "## 开始执行... $begin_time\n" >> $log_path echo -e "## 开始执行... $begin_time\n" >>$log_path
[[ -f $task_error_log_path ]] && cat $task_error_log_path >> $log_path [[ -f $task_error_log_path ]] && cat $task_error_log_path >>$log_path
. $dir_shell/bot.sh >> $log_path . $dir_shell/bot.sh >>$log_path
;; ;;
check) check)
echo -e "## 开始执行... $begin_time\n" >> $log_path echo -e "## 开始执行... $begin_time\n" >>$log_path
[[ -f $task_error_log_path ]] && cat $task_error_log_path >> $log_path [[ -f $task_error_log_path ]] && cat $task_error_log_path >>$log_path
. $dir_shell/check.sh >> $log_path . $dir_shell/check.sh >>$log_path
;;
resetlet)
echo -e "## 开始执行... $begin_time\n" >>$log_path
auth_value=$(cat $file_auth_user | jq '.retries =0' -c)
echo -e "重置成功 \n $auth_value" >>$log_path
echo "$auth_value" >$file_auth_user
;; ;;
*) *)
echo -e "命令输入错误...\n" echo -e "命令输入错误...\n"
@ -491,7 +497,7 @@ main() {
esac esac
local end_time=$(date '+%Y-%m-%d %H:%M:%S') local end_time=$(date '+%Y-%m-%d %H:%M:%S')
local diff_time=$(($(date +%s -d "$end_time") - $(date +%s -d "$begin_time"))) local diff_time=$(($(date +%s -d "$end_time") - $(date +%s -d "$begin_time")))
echo -e "\n## 执行结束... $end_time 耗时 $diff_time" >> $log_path echo -e "\n## 执行结束... $end_time 耗时 $diff_time" >>$log_path
cat $log_path cat $log_path
} }