Skip to content

Commit

Permalink
fix: update ubuntu download liniks
Browse files Browse the repository at this point in the history
  • Loading branch information
fadnincx authored Aug 16, 2023
1 parent 4f2bde2 commit d088319
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions container/build-iso.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
# switch iso by selected os
if config['os'] == "jammy":
config['input'] = {}
config['input']['iso_filename'] = "ubuntu-22.04.2-live-server-amd64.iso"
config['input']['iso_filename'] = "ubuntu-22.04.3-live-server-amd64.iso"
config['input']['iso_url'] = (
"https://releases.ubuntu.com/22.04/ubuntu-22.04.2-live-server-amd64.iso"
"https://releases.ubuntu.com/22.04/ubuntu-22.04.3-live-server-amd64.iso"
)
config['input']['sha256_filename'] = "SHA256SUMS"
config['input']['sha256_url'] = "https://releases.ubuntu.com/22.04/SHA256SUMS"
Expand All @@ -77,9 +77,9 @@
]
elif config['os'] == "focal":
config['input'] = {}
config['input']['iso_filename'] = "ubuntu-20.04.5-live-server-amd64.iso"
config['input']['iso_filename'] = "ubuntu-20.04.6-live-server-amd64.iso"
config['input']['iso_url'] = (
"https://releases.ubuntu.com/20.04/ubuntu-20.04.5-live-server-amd64.iso"
"https://releases.ubuntu.com/20.04/ubuntu-20.04.6-live-server-amd64.iso"
)
config['input']['sha256_filename'] = "SHA256SUMS"
config['input']['sha256_url'] = "https://releases.ubuntu.com/20.04/SHA256SUMS"
Expand Down

0 comments on commit d088319

Please sign in to comment.