diff --git a/create_vm b/create_vm index 7b3f9de..8e7ed97 100755 --- a/create_vm +++ b/create_vm @@ -7,7 +7,7 @@ MEMORY=2048 BRIDGE=vmbr0 STORAGE=customer-disks OS_TYPE=l26 -DISK_IMAGE=/root/images/debian-12-genericcloud-amd64.qcow2 +DISK_IMAGE=/root/images/debian-13-genericcloud-amd64-20251117-2299.qcow2 ID=$1 NAME=$2 diff --git a/download_images b/download_images new file mode 100755 index 0000000..b3160cc --- /dev/null +++ b/download_images @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +URL=https://cloud.debian.org/images/cloud/trixie/20251117-2299/debian-13-genericcloud-amd64-20251117-2299.qcow2 +DEST=/root/images/ + +cd "${DEST}" +wget "${URL}"