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.
24 lines
430 B
24 lines
430 B
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
|
|
build() {
|
|
local n
|
|
|
|
for n in bigboss; do
|
|
vdn-build $n
|
|
vdn-config $n GUEST_SYS "debian/buster"
|
|
vdn-config $n MEMORY "2048"
|
|
done
|
|
|
|
n=bigboss
|
|
vdn-config $n EXTRA_SERVICES "apache2 proftpd nfs-server isc-dhcp-server haveged"
|
|
vdn-config $n NETWORKS "\$NET_2#10.0.2.15/24"
|
|
vdn-config $n REDIRS "\
|
|
tcp:22:(ssh) \
|
|
tcp:80:(http) \
|
|
"
|
|
}
|
|
|