feat(脚本): 添加定时任务证书更新日志、添加日志管理可查看定时任务日志

pull/534/merge
mack-a 2021-05-26 15:01:47 +08:00
parent 6ca1e2f2d2
commit e8b1849938
1 changed files with 11 additions and 6 deletions

View File

@ -784,7 +784,7 @@ installCronTLS() {
echoContent skyBlue "\n进度 $1/${totalProgress} : 添加定时维护证书" echoContent skyBlue "\n进度 $1/${totalProgress} : 添加定时维护证书"
crontab -l >/etc/v2ray-agent/backup_crontab.cron crontab -l >/etc/v2ray-agent/backup_crontab.cron
sed '/v2ray-agent/d;/acme.sh/d' /etc/v2ray-agent/backup_crontab.cron >/etc/v2ray-agent/backup_crontab.cron sed '/v2ray-agent/d;/acme.sh/d' /etc/v2ray-agent/backup_crontab.cron >/etc/v2ray-agent/backup_crontab.cron
echo "30 1 * * * /bin/bash /etc/v2ray-agent/install.sh RenewTLS" >>/etc/v2ray-agent/backup_crontab.cron echo "30 1 * * * /bin/bash /etc/v2ray-agent/install.sh RenewTLS >> /etc/v2ray-agent/crontab_tls.log 2>&1" >>/etc/v2ray-agent/backup_crontab.cron
crontab /etc/v2ray-agent/backup_crontab.cron crontab /etc/v2ray-agent/backup_crontab.cron
echoContent green "\n ---> 添加定时维护证书成功" echoContent green "\n ---> 添加定时维护证书成功"
} }
@ -805,15 +805,18 @@ renewalTLS() {
if [[ ${remainingDays} -le 0 ]]; then if [[ ${remainingDays} -le 0 ]]; then
tlsStatus="已过期" tlsStatus="已过期"
fi fi
echoContent skyBlue " ---> 证书检查日期:$(date "+%F %H:%M:%S")"
echoContent skyBlue " ---> 证书生成日期:$(date -d @"${modifyTime}" +"%F %H:%M:%S")" echoContent skyBlue " ---> 证书生成日期:$(date -d @"${modifyTime}" +"%F %H:%M:%S")"
echoContent skyBlue " ---> 证书生成天数:${days}" echoContent skyBlue " ---> 证书生成天数:${days}"
echoContent skyBlue " ---> 证书剩余天数:"${tlsStatus} echoContent skyBlue " ---> 证书剩余天数:"${tlsStatus}
echoContent skyBlue " ---> 证书过期前最后一天自动更新,如更新失败请手动更新"
if [[ ${remainingDays} -le 1 ]]; then if [[ ${remainingDays} -le 1 ]]; then
echoContent yellow " ---> 重新生成证书" echoContent yellow " ---> 重新生成证书"
handleNginx stop handleNginx stop
sudo "$HOME/.acme.sh/acme.sh" --cron --home "$HOME/.acme.sh" sudo "$HOME/.acme.sh/acme.sh" --cron --home "$HOME/.acme.sh"
sudo "$HOME/.acme.sh/acme.sh" --installcert -d "${currentHost}" --fullchainpath /etc/v2ray-agent/tls/"${currentHost}.crt" --keypath /etc/v2ray-agent/tls/"${currentHost}.key" --ecc | sudo tee -a /etc/v2ray-agent/tls/acme.log sudo "$HOME/.acme.sh/acme.sh" --installcert -d "${currentHost}" --fullchainpath /etc/v2ray-agent/tls/"${currentHost}.crt" --keypath /etc/v2ray-agent/tls/"${currentHost}.key" --ecc
handleNginx start handleNginx start
reloadCore reloadCore
@ -1460,7 +1463,6 @@ initV2RayConfig() {
fi fi
if [[ -n "${currentUUID}" && -z "${uuid}" ]]; then if [[ -n "${currentUUID}" && -z "${uuid}" ]]; then
echo
read -r -p "读取到上次安装记录是否使用上次安装时的UUID [y/n]:" historyUUIDStatus read -r -p "读取到上次安装记录是否使用上次安装时的UUID [y/n]:" historyUUIDStatus
if [[ "${historyUUIDStatus}" == "y" ]]; then if [[ "${historyUUIDStatus}" == "y" ]]; then
uuid=${currentUUID} uuid=${currentUUID}
@ -1790,7 +1792,6 @@ initXrayConfig() {
fi fi
if [[ -n "${currentUUID}" && -z "${uuid}" ]]; then if [[ -n "${currentUUID}" && -z "${uuid}" ]]; then
echo
read -r -p "读取到上次安装记录是否使用上次安装时的UUID [y/n]:" historyUUIDStatus read -r -p "读取到上次安装记录是否使用上次安装时的UUID [y/n]:" historyUUIDStatus
if [[ "${historyUUIDStatus}" == "y" ]]; then if [[ "${historyUUIDStatus}" == "y" ]]; then
uuid=${currentUUID} uuid=${currentUUID}
@ -2859,7 +2860,8 @@ checkLog() {
echoContent yellow "2.监听access日志" echoContent yellow "2.监听access日志"
echoContent yellow "3.监听error日志" echoContent yellow "3.监听error日志"
echoContent yellow "4.清空日志" echoContent yellow "4.查看证书更新日志"
echoContent yellow "5.清空日志"
echoContent red "==============================================================" echoContent red "=============================================================="
read -r -p "请选择:" selectAccessLogType read -r -p "请选择:" selectAccessLogType
@ -2897,6 +2899,9 @@ EOF
tail -f ${configPathLog}error.log tail -f ${configPathLog}error.log
;; ;;
4) 4)
tail -n 100 /etc/v2ray-agent/crontab_tls.log
;;
5)
echo >${configPathLog}access.log echo >${configPathLog}access.log
echo >${configPathLog}error.log echo >${configPathLog}error.log
;; ;;
@ -3773,7 +3778,7 @@ menu() {
cd "$HOME" || exit cd "$HOME" || exit
echoContent red "\n==============================================================" echoContent red "\n=============================================================="
echoContent green "作者mack-a" echoContent green "作者mack-a"
echoContent green "当前版本v2.4.25" echoContent green "当前版本v2.4.26"
echoContent green "Githubhttps://github.com/mack-a/v2ray-agent" echoContent green "Githubhttps://github.com/mack-a/v2ray-agent"
echoContent green "描述:八合一共存脚本\c" echoContent green "描述:八合一共存脚本\c"
showInstallStatus showInstallStatus