Skip to content

Commit

Permalink
Fix iso-downloading href of debian/archlinux
Browse files Browse the repository at this point in the history
  • Loading branch information
rhiswell committed Aug 2, 2017
1 parent fceece4 commit 8879d24
Showing 1 changed file with 22 additions and 12 deletions.
34 changes: 22 additions & 12 deletions geninfo/genisolist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ listvers = 1
# "location" specifies globbing pathname of the image. The path is relative to
# the HTTP root (aka "root" in [%main%] section). Not all images match it is
# considered, you can use "pattern" option below to filter.
location = archlinux/iso/latest/archlinux-*-dual.iso
location = archlinux/iso/latest/archlinux-*.iso
# "pattern" is a regular expression. If the pattern is found in image path
# found by "location", then the image is valid. Group capturing is to extract
# image info from image path name.
Expand Down Expand Up @@ -127,22 +127,32 @@ platform = $2
[debian_cd]
distro = Debian
listvers = 1
location_0 = debian-cd/current/amd64/iso-cd/debian-[0-9]*-amd64-CD-1.iso
location_1 = debian-cd/current/i386/iso-cd/debian-[0-9]*-i386-CD-1.iso
location_0 = debian-cd/current/amd64/iso-cd/debian-*-amd64-CD-1.iso
location_1 = debian-cd/current/i386/iso-cd/debian-*-i386-CD-1.iso
pattern = debian-([0-9.]+)-(\w+)-CD-1.iso
version = $1
type = CD installer
platform = $2

#[debian_live]
#distro = Debian
#listvers = 1
#location_0 = debian-cd/current-live/amd64/iso-hybrid/debian-live-[0-9]*-amd64-*-desktop.iso
#location_1 = debian-cd/current-live/i386/iso-hybrid/debian-live-[0-9]*-i386-*-desktop.iso
#pattern = debian-live-([0-9.]+)-(\w+)-(\w+)-desktop.iso
#version = $1
#type = $3 live
#platform = $2
[debian_dvd]
distro = Debian
listvers = 1
location_0 = debian-cd/current/amd64/iso-dvd/debian-*-amd64-DVD-*.iso
location_1 = debian-cd/current/i386/iso-dvd/debian-*-i386-DVD-*.iso
pattern = debian-([0-9.])+-(\w+)-DVD-(\d).iso
version = $1
type = DVD installer (Part $3)
platform = $2

[debian_live]
distro = Debian
listvers = 1
location_0 = debian-cd/current-live/amd64/iso-hybrid/debian-live-[0-9]*-amd64-*.iso
location_1 = debian-cd/current-live/i386/iso-hybrid/debian-live-[0-9]*-i386-*.iso
pattern = debian-live-([0-9.]+)-(\w+)-(\w+).iso
version = $1
type = $3 live
platform = $2

[centos]
distro = CentOS
Expand Down

0 comments on commit 8879d24

Please sign in to comment.