update variables
This commit is contained in:
parent
6d82d1e5b0
commit
815d25269f
1 changed files with 15 additions and 12 deletions
|
@ -1,23 +1,26 @@
|
|||
#!/bin/bash
|
||||
set -x
|
||||
vmid=9001
|
||||
|
||||
vmId=9001
|
||||
pveStorage="local-lvm"
|
||||
vmName="debian-12-${timestamp}.template.net"
|
||||
timestamp=$(date '+%Y-%m-%d-%H-%M')
|
||||
vmname=debian-12-$timestamp.template.net
|
||||
##################
|
||||
|
||||
wget https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-genericcloud-amd64.qcow2 -O debian-genericcloud-amd64.qcow2
|
||||
qm destroy ${vmid}
|
||||
qm destroy ${vmId}
|
||||
|
||||
qm create ${vmid} --cores 2 --memory 2048 --net0 virtio,bridge=vmbr0 --scsihw virtio-scsi-pci --name $vmname
|
||||
qm create ${vmId} --cores 2 --memory 2048 --net0 virtio,bridge=vmbr0 --scsihw virtio-scsi-pci --name "${vmName}"
|
||||
|
||||
qm set ${vmid} --scsi0 pve:0,import-from=/root/debian-genericcloud-amd64.qcow2
|
||||
qm set ${vmid} --ide2 pve:cloudinit
|
||||
qm set ${vmid} --boot order=scsi0
|
||||
qm set ${vmid} --agent enabled=1
|
||||
qm set ${vmid} --ostype l26
|
||||
qm set ${vmid} --serial0 socket --vga serial0
|
||||
qm resize ${vmid} scsi0 +6G
|
||||
qm set ${vmId} --scsi0 ${pveStorage}:0,import-from=/root/debian-genericcloud-amd64.qcow2
|
||||
qm set ${vmId} --ide2 ${pveStorage}:cloudinit
|
||||
qm set ${vmId} --boot order=scsi0
|
||||
qm set ${vmId} --agent enabled=1
|
||||
qm set ${vmId} --ostype l26
|
||||
qm set ${vmId} --serial0 socket --vga serial0
|
||||
qm resize ${vmId} scsi0 +6G
|
||||
|
||||
qm template ${vmid}
|
||||
qm template ${vmId}
|
||||
rm debian-genericcloud-amd64.qcow2
|
||||
|
||||
set +x
|
||||
|
|
Loading…
Reference in a new issue