From e145464ca9907ff02c1ca1058a8b9a8f315b50b9 Mon Sep 17 00:00:00 2001 From: Jiajie Chen Date: Sun, 29 Aug 2021 08:08:01 +0800 Subject: [PATCH] Update debian current and latest distributions in apt-sync.py --- apt-sync.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apt-sync.py b/apt-sync.py index 1eb9dcd..27b573b 100755 --- a/apt-sync.py +++ b/apt-sync.py @@ -25,9 +25,9 @@ requests.utils.default_user_agent = lambda: APT_SYNC_USER_AGENT OS_TEMPLATE = { 'ubuntu-current': ["xenial", "bionic", "focal", "groovy"], 'ubuntu-lts': ["xenial", "bionic", "focal"], - 'debian-current': ["jessie", "stretch", "buster"], - 'debian-latest2': ["stretch", "buster"], - 'debian-latest': ["buster"], + 'debian-current': ["jessie", "stretch", "buster", "bullseye"], + 'debian-latest2': ["buster", "bullseye"], + 'debian-latest': ["bullseye"], } ARCH_NO_PKGIDX = ['dep11', 'i18n'] MAX_RETRY=int(os.getenv('MAX_RETRY', '3'))