From c0603404a8cb5277fbd1f127e92149f354c32076 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sun, 14 May 2023 22:20:34 +0000 Subject: [PATCH] feat: use the latest snapshot for Debian Jessie and Stretch --- distro/debian/debian.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/distro/debian/debian.go b/distro/debian/debian.go index bfe6925..06b0f4b 100644 --- a/distro/debian/debian.go +++ b/distro/debian/debian.go @@ -171,10 +171,10 @@ func repositories(release Release) (repos []string) { case Wheezy: // doesn't include snapshot repos in /etc/apt/source.list snapshot = "20190321T212815Z" - // case Jessie: - // snapshot = "20230322T152120Z" - // case Stretch: - // snapshot = "20230423T032533Z" + case Jessie: + snapshot = "20230322T152120Z" + case Stretch: + snapshot = "20230423T032533Z" default: return }