From 227b3207807e3687b645315dd69534c9a2449f33 Mon Sep 17 00:00:00 2001 From: Hui Yiqun Date: Fri, 10 Aug 2018 00:25:40 +0800 Subject: [PATCH] begin to sync new openwrt and stop the old one --- openwrt.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openwrt.sh b/openwrt.sh index 6a9d7fc..9fa592f 100755 --- a/openwrt.sh +++ b/openwrt.sh @@ -1,5 +1,7 @@ #!/bin/bash +CURRENT_STABLE_RELEASES="17.01.5 18.06.0" + function sync_openwrt() { repo_url="$1" repo_dir="$2" @@ -10,4 +12,5 @@ function sync_openwrt() { lftp "${repo_url}/" -e "mirror --verbose -P 5 --only-newer --exclude-glob *.ipk; bye" } -sync_openwrt "http://downloads.openwrt.org/chaos_calmer/15.05.1" "${TUNASYNC_WORKING_DIR}/chaos_calmer/15.05.1" +#sync_openwrt "http://downloads.openwrt.org/chaos_calmer/15.05.1" "${TUNASYNC_WORKING_DIR}/chaos_calmer/15.05.1" +for release in $CURRENT_STABLE_RELEASES; do sync_openwrt "http://downloads.openwrt.org/releases/$release/targets" "${TUNASYNC_WORKING_DIR}/release/$release"; done