From 55be4011eaf3d897642ac3dae77012d166382b60 Mon Sep 17 00:00:00 2001 From: 233boy Date: Sun, 25 Nov 2018 11:42:12 +0800 Subject: [PATCH] sync time: v2ray time --- install.sh | 6 +++--- v2ray.sh | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 57354b6..6f8a654 100644 --- a/install.sh +++ b/install.sh @@ -711,13 +711,13 @@ caddy_config() { install_v2ray() { $cmd update -y if [[ $cmd == "apt-get" ]]; then - $cmd install -y lrzsz git zip unzip curl wget qrencode libcap2-bin ntpdate + $cmd install -y lrzsz git zip unzip curl wget qrencode libcap2-bin else - $cmd install -y lrzsz git zip unzip curl wget qrencode libcap iptables-services ntpdate + $cmd install -y lrzsz git zip unzip curl wget qrencode libcap iptables-services fi ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime [ -d /etc/v2ray ] && rm -rf /etc/v2ray - ntpdate -u cn.pool.ntp.org + date -s "$(curl -sI g.cn | grep Date | cut -d' ' -f3-6)Z" if [[ $local_install ]]; then if [[ ! -d $(pwd)/config ]]; then diff --git a/v2ray.sh b/v2ray.sh index dfdbdbf..43777fe 100644 --- a/v2ray.sh +++ b/v2ray.sh @@ -10,7 +10,7 @@ none='\e[0m' # Root [[ $(id -u) != 0 ]] && echo -e " 哎呀……请使用 ${red}root ${none}用户运行 ${yellow}~(^_^) ${none}" && exit 1 -_version="v3.05" +_version="v3.06" cmd="apt-get" @@ -2928,6 +2928,9 @@ reload) clear view_v2ray_config_info ;; +time) + date -s "$(curl -sI g.cn | grep Date | cut -d' ' -f3-6)Z" + ;; log) view_v2ray_log ;;