Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Permanent URL for the latest release ISO

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
nick
Posts: 3
Joined: 2020-10-17 12:20

Permanent URL for the latest release ISO

#1 Post by nick »

Do we have a permanent URL for the latest release ISO?

The https://cdimage.debian.org/mirror/cdima ... 64/iso-cd/ release directory contains only the latest ISO, e.g. https://cdimage.debian.org/mirror/cdima ... etinst.iso. This ISO will be moved to the archive directory like https://cdimage.debian.org/mirror/cdima ... 64/iso-cd/ (10.5 instead of 10.6 because 10.6 archive directory doesn't exist yet) after the 10.7 release and will be removed from the https://cdimage.debian.org/mirror/cdima ... 64/iso-cd/ release directory.

The problem is that when I use the latest release ISO URL in my CI, it's broken with every Debian release (old debian-10.5.0-amd64-netinst.iso replaced with the new debian-10.6.0-amd64-netinst.iso) and I have to switch CI's URL to the next release URL. I wish to switch this URL only when I decided to switch to the new release but not forced to do so.

How about to put release ISO to the archive directory simultaneously with the release directory? Backward compatibility will be intact (extended) and my problem will be solved.

How to bring this idea to the release team?

User avatar
metreo
Posts: 20
Joined: 2020-10-08 19:15

Re: Permanent URL for the latest release ISO

#2 Post by metreo »

I would send a post on the IRC or mailing list.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: Permanent URL for the latest release ISO

#3 Post by Head_on_a_Stick »

Perhaps include some logic in your CI that will update to the next point release automatically if the old version is removed?
deadbang

nick
Posts: 3
Joined: 2020-10-17 12:20

Re: Permanent URL for the latest release ISO

#4 Post by nick »

metreo wrote:I would send a post on the IRC or mailing list.
Good idea. Thank you! I've sent it to the debian-release mailing list.

arzgi
Posts: 1194
Joined: 2008-02-21 17:03
Location: Finland
Been thanked: 31 times

Re: Permanent URL for the latest release ISO

#5 Post by arzgi »

Head_on_a_Stick wrote:Perhaps include some logic in your CI that will update to the next point release automatically if the old version is removed?
nick wrote:
metreo wrote:I would send a post on the IRC or mailing list.
Good idea. Thank you! I've sent it to the debian-release mailing list.

It's always some one other's fault :D

sgosnell
Posts: 975
Joined: 2011-03-14 01:49

Re: Permanent URL for the latest release ISO

#6 Post by sgosnell »

It is certainly one's fault here. We're all just Debian users, and have no more input into Debian than anyone else out on the street. This forum has no affiliation with Debian other than the name.
Take my advice, I'm not using it.

User avatar
metreo
Posts: 20
Joined: 2020-10-08 19:15

Re: Permanent URL for the latest release ISO

#7 Post by metreo »

I think the issue here is indeterminism, it's not great have a generic pointer which leads to unspecified code on the other end.

User avatar
Bloom
df -h | grep > 90TiB
df -h | grep > 90TiB
Posts: 504
Joined: 2017-11-11 12:23
Been thanked: 26 times

Re: Permanent URL for the latest release ISO

#8 Post by Bloom »

You can determine the last version by using this Bash code:

Code: Select all

wget -qO - http://cdimage.debian.org/cdimage/release/current-live/amd64/iso-hybrid/MD5SUMS|grep "standard.iso"|cut -d " " -f 3
So to download the last version of Debian Stable Live Edition, do this:

Code: Select all

wget http://cdimage.debian.org/cdimage/release/current-live/amd64/iso-hybrid/$(wget -qO - http://cdimage.debian.org/cdimage/release/current-live/amd64/iso-hybrid/MD5SUMS|grep "standard.iso"|cut -d " " -f 3)

nick
Posts: 3
Joined: 2020-10-17 12:20

Re: Permanent URL for the latest release ISO

#9 Post by nick »

Head_on_a_Stick wrote:Perhaps include some logic in your CI that will update to the next point release automatically if the old version is removed?
I thought about such a solution and will implement it if I won't find a better one.

Post Reply