21 lines
No EOL
675 B
Ruby
21 lines
No EOL
675 B
Ruby
|
|
|
|
module VirtualMachine
|
|
ISO_URLS = {
|
|
debian: {
|
|
arm64: {
|
|
install: "https://cdimage.debian.org/debian-cd/current/arm64/iso-cd/debian-13.0.0-arm64-netinst.iso"
|
|
},
|
|
x86_64: {
|
|
install: "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-13.0.0-amd64-netinst.iso",
|
|
live: "https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/debian-live-13.0.0-amd64-standard.iso"
|
|
}
|
|
},
|
|
archlinux: {
|
|
x86_64: {
|
|
live: "https://geo.mirror.pkgbuild.com/iso/2025.08.01/archlinux-x86_64.iso"
|
|
}
|
|
}
|
|
}
|
|
|
|
end |