From c89c24bfb9d851c15ce3ae78681c415b29e95bec Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 16 May 2021 04:37:34 +0000 Subject: [PATCH] work around this bug the fun way Signed-off-by: Christine Dodrill --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index a06fa22..7ed795a 100644 --- a/main.go +++ b/main.go @@ -32,7 +32,7 @@ var ( distro = flag.String("distro", "alpine-edge", "the linux distro to install in the VM") name = flag.String("name", "", "the name of the VM, defaults to a random common blade name") zvolPrefix = flag.String("zvol-prefix", "rpool/mkvm-test/", "the prefix to use for zvol names") - zvolSize = flag.Int("zvol-size", 0, "the number of gigabytes for the virtual machine disk") + zvolSize = flag.Int("zvol-size", 25, "the number of gigabytes for the virtual machine disk") memory = flag.Int("memory", 512, "the number of megabytes of ram for the virtual machine") cloudConfig = flag.String("user-data", "./var/xe-base.yaml", "path to a cloud-config userdata file") )