34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
# Default temporary Internet settings ###############################################
|
|
|
|
set -g VM_TEMP_NET_BRIDGE vmbr1
|
|
set -g VM_TEMP_NET_MODEL virtio
|
|
|
|
set -g VM_TEMP_NET_IP "192.0.2.100/24"
|
|
set -g VM_TEMP_NET_GATEWAY "192.0.2.1"
|
|
|
|
# Default template settings #########################################################
|
|
|
|
set -g VM_TEMPLATE_BRIDGE vmbr0
|
|
set -g VM_TEMPLATE_BRIDGES vmbr0 vmbr1 vmbr2
|
|
|
|
set -g VM_TEMPLATE_IMAGE /root/os_images/debian-13-generic-amd64.qcow2
|
|
set -g VM_TEMPLATE_STORAGE netapp-lvm
|
|
|
|
set -g VM_TEMPLATE_MACHINE q35
|
|
set -g VM_TEMPLATE_CPU host
|
|
set -g VM_TEMPLATE_OSTYPE l26
|
|
|
|
set -g VM_TEMPLATE_CORES 2
|
|
set -g VM_TEMPLATE_MEMORY 2048
|
|
|
|
set -g VM_TEMPLATE_NET_MODEL virtio
|
|
set -g VM_TEMPLATE_SCSIHW virtio-scsi-single
|
|
|
|
set -g VM_TEMPLATE_AGENT enabled=1
|
|
|
|
set -g VM_TEMPLATE_BOOT order=scsi0
|
|
set -g VM_TEMPLATE_SERIAL socket
|
|
set -g VM_TEMPLATE_VGA serial0
|
|
set -g VM_TEMPLATE_IPCONFIG ip=dhcp
|
|
|
|
set -g VM_TEMPLATE_IMPORT_OPTS discard=on,ssd=1,iothread=1 |