From d0d74aa308a59ac71e67131e3fd60348a4ea3a5c Mon Sep 17 00:00:00 2001 From: Zenithal Date: Thu, 15 Jun 2023 13:58:04 +0800 Subject: [PATCH] apt-sync: bookworm is the latest --- apt-sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apt-sync.py b/apt-sync.py index c4e0fb6..cbe8397 100755 --- a/apt-sync.py +++ b/apt-sync.py @@ -25,8 +25,8 @@ requests.utils.default_user_agent = lambda: APT_SYNC_USER_AGENT OS_TEMPLATE = { 'ubuntu-lts': ["bionic", "focal", "jammy"], 'debian-current': ["buster", "bullseye", "bookworm"], - 'debian-latest2': ["buster", "bullseye"], - 'debian-latest': ["bullseye"], + 'debian-latest2': ["bullseye", "bookworm"], + 'debian-latest': ["bookworm"], } ARCH_NO_PKGIDX = ['dep11', 'i18n', 'cnf'] MAX_RETRY=int(os.getenv('MAX_RETRY', '3'))