File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 154154S3_DOWNLOADS_DIR = Path (os .path .dirname (__file__ )) / ".." / "s3_downloads"
155155
156156GLVD_BASE_URL = "https://glvd.ingress.glvd.gardnlinux.shoot.canary.k8s-hana.ondemand.com/v1"
157+ GL_DEB_REPO_BASE_URL = "https://packages.gardenlinux.io/gardenlinux"
Original file line number Diff line number Diff line change 55
66from gardenlinux .apt import DebsrcFile , GardenLinuxRepo
77from gardenlinux .apt .package_repo_info import compare_repo
8- from gardenlinux .constants import REQUESTS_TIMEOUTS
8+ from gardenlinux .constants import GL_DEB_REPO_BASE_URL , REQUESTS_TIMEOUTS
99
1010
1111def get_package_list (gardenlinux_version ):
12- url = f"https://packages.gardenlinux.io/gardenlinux /dists/{ gardenlinux_version } /main/binary-amd64/Packages.gz"
12+ url = f"{ GL_DEB_REPO_BASE_URL } /dists/{ gardenlinux_version } /main/binary-amd64/Packages.gz"
1313 response = requests .get (url , timeout = REQUESTS_TIMEOUTS )
1414 response .raise_for_status ()
1515
You can’t perform that action at this time.
0 commit comments