From ee29b9f584e791bbe24dee2e20573e8904109b5e Mon Sep 17 00:00:00 2001 From: z4yx Date: Thu, 30 Apr 2020 10:47:33 +0800 Subject: [PATCH] new os template: debian-latest2 --- apt-sync.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apt-sync.py b/apt-sync.py index 117a49f..4ca9c4b 100755 --- a/apt-sync.py +++ b/apt-sync.py @@ -22,6 +22,8 @@ OS_TEMPLATE = { 'ubuntu-current': ["xenial", "bionic", "eoan", "focal"], 'ubuntu-lts': ["xenial", "bionic", "focal"], 'debian-current': ["jessie", "stretch", "buster"], + 'debian-latest2': ["stretch", "buster"], + 'debian-latest': ["buster"], } MAX_RETRY=int(os.getenv('MAX_RETRY', '3')) DOWNLOAD_TIMEOUT=int(os.getenv('DOWNLOAD_TIMEOUT', '1800'))