You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

150 lines
4.8 KiB

#!/usr/bin/env bash
build() {
local n
n="buster"
vdn-build $n
vdn-config $n GUEST_SYS "debian/buster"
vdn-config $n HDA "DebianBuster.disk"
vdn-config $n CDROM ""
vdn-config $n CDROM_REPOSITORY ""
vdn-config $n MODE "direct"
vdn-config $n MEMORY "2048"
vdn-config $n HDA_SIZE "16000"
#vdn-config $n KVM_VIEWER_AUTOSTART 1
n="buster-test"
vdn-build $n
vdn-config $n GUEST_SYS "debian/buster"
vdn-config $n HDA "DebianBuster-test.disk"
#vdn-config $n CDROM "debian-testing-amd64-netinst.iso"
#vdn-config $n CDROM_REPOSITORY "https://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/"
vdn-config $n MODE "direct"
vdn-config $n MEMORY "2048"
vdn-config $n HDA_SIZE "16000"
vdn-config $n KVM_VIEWER_AUTOSTART 1
n="buster-test-tgz2"
vdn-build $n
vdn-config $n HDA "DebianBuster-test.disk"
vdn-config $n MODE "tgz2"
vdn-config $n GUEST_SYS "debian/buster"
vdn-config $n MEMORY "384"
#vdn-config $n RUNLEVEL "multi-user.target"
vdn-config $n SET_HOSTNAME 0
#vdn-config $n HOST_FILES ""
vdn-config $n SET_PROXY "0"
vdn-config $n EXTRA_ETH_DEFAULT_ROUTE "0"
n="buster-tgz2"
vdn-build $n
vdn-config $n HDA "DebianBuster.disk"
vdn-config $n MODE "tgz2"
vdn-config $n GUEST_SYS "debian/buster"
vdn-config $n MEMORY "384"
#vdn-config $n RUNLEVEL "multi-user.target"
vdn-config $n SET_HOSTNAME 0
#vdn-config $n HOST_FILES ""
vdn-config $n SET_PROXY "0"
vdn-config $n EXTRA_ETH_DEFAULT_ROUTE "0"
#vdn-config $n NETWORKS "none \$NET_2#192.168.30.16/24"
n="bullseye"
vdn-build $n
vdn-config $n GUEST_SYS "debian/bullseye"
vdn-config $n HDA "DebianBullseye.disk"
#vdn-config $n CDROM "debian-testing-amd64-netinst.iso"
#vdn-config $n CDROM_REPOSITORY "https://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/"
vdn-config $n MODE "direct"
vdn-config $n MEMORY "2048"
vdn-config $n HDA_SIZE "16000"
#vdn-config $n KVM_VIEWER_AUTOSTART 1
n="docker"
vdn-build $n
vdn-config $n GUEST_SYS "debian/bullseye"
vdn-config $n HDA "DebianBullseyeDocker.disk"
#vdn-config $n CDROM "debian-testing-amd64-netinst.iso"
#vdn-config $n CDROM_REPOSITORY "https://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/"
vdn-config $n MODE "direct"
vdn-config $n MEMORY "4096"
vdn-config $n HDA_SIZE "16000"
#vdn-config $n KVM_VIEWER_AUTOSTART 1
n="bullseye-tgz2"
vdn-build $n
vdn-config $n HDA "DebianBullseye.disk"
vdn-config $n MODE "tgz2"
vdn-config $n GUEST_SYS "debian/bullseye"
vdn-config $n MEMORY "384"
#vdn-config $n RUNLEVEL "multi-user.target"
vdn-config $n SET_HOSTNAME 0
#vdn-config $n HOST_FILES ""
vdn-config $n SET_PROXY "0"
vdn-config $n EXTRA_ETH_DEFAULT_ROUTE "0"
n="bookworm"
vdn-build $n
vdn-config $n GUEST_SYS "debian/$n"
vdn-config $n HDA "DebianBookworm.disk"
vdn-config $n MODE "direct"
vdn-config $n MEMORY "2048"
vdn-config $n HDA_SIZE "32000"
#vdn-config $n KVM_VIEWER_AUTOSTART 1
n="bullseye-test"
vdn-build $n
vdn-config $n GUEST_SYS "debian/bullseye"
vdn-config $n HDA "DebianBullseye-test.disk"
#vdn-config $n CDROM "debian-testing-amd64-netinst.iso"
#vdn-config $n CDROM_REPOSITORY "https://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/"
vdn-config $n MODE "direct"
vdn-config $n MEMORY "2048"
vdn-config $n HDA_SIZE "16000"
vdn-config $n KVM_VIEWER_AUTOSTART 1
n="sae103"
vdn-build $n
vdn-config $n GUEST_SYS "debian/bullseye"
vdn-config $n HDA "sae103.disk"
#vdn-config $n CDROM "debian-testing-amd64-netinst.iso"
#vdn-config $n CDROM_REPOSITORY "https://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/"
vdn-config $n MODE "direct"
vdn-config $n MEMORY "2048"
vdn-config $n HDA_SIZE "16000"
vdn-config $n KVM_VIEWER_AUTOSTART 1
n="bullseye-test-tgz2"
vdn-build $n
vdn-config $n HDA "DebianBullseye-test.disk"
vdn-config $n MODE "tgz2"
vdn-config $n GUEST_SYS "debian/bullseye"
vdn-config $n MEMORY "384"
#vdn-config $n RUNLEVEL "multi-user.target"
vdn-config $n SET_HOSTNAME 0
#vdn-config $n HOST_FILES ""
vdn-config $n SET_PROXY "0"
vdn-config $n EXTRA_ETH_DEFAULT_ROUTE "0"
n="bullseye-sae"
vdn-build $n
vdn-config $n GUEST_SYS "debian/bullseye"
vdn-config $n HDA "DebianBullseye-sae-amd64.disk"
#vdn-config $n CDROM "debian-11.2.0-amd64-netinst.iso"
#vdn-config $n CDROM_REPOSITORY "https://cdimage.debian.org/cdimage/release/11.2.0/amd64/iso-cd"
vdn-config $n MODE "direct"
vdn-config $n MEMORY "2048"
vdn-config $n HDA_SIZE "16000"
vdn-config $n KVM_VIEWER_AUTOSTART 1
}