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.
23 lines
421 B
23 lines
421 B
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
|
|
build() {
|
|
local n
|
|
|
|
n=debian-1
|
|
vdn-build $n
|
|
vdn-config $n MEMORY "2048"
|
|
vdn-config $n MODE "cow"
|
|
#vdn-config $n AUFS_SIZE "2048"
|
|
vdn-config $n HDA "DebianBullseye-sae-amd64.disk"
|
|
#vdn-config $n NETWORKS "\$NET_2#10.0.2.15/24"
|
|
vdn-config $n KVM_VIEWER_AUTOSTART "1"
|
|
vdn-config $n REDIRS "\
|
|
tcp:22:(ssh) \
|
|
tcp:80:(http) \
|
|
"
|
|
}
|
|
|