From b467bb22a3a696ea038cc852a6f1cb286e029d97 Mon Sep 17 00:00:00 2001 From: Calle Pettersson Date: Mon, 9 Sep 2019 22:33:48 +0200 Subject: [PATCH] Shorten default boot_key_interval to 5ms from 100ms --- builder/proxmox/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/proxmox/config.go b/builder/proxmox/config.go index b5cf759fe..e84d81d2c 100644 --- a/builder/proxmox/config.go +++ b/builder/proxmox/config.go @@ -103,7 +103,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) { c.RawBootKeyInterval = os.Getenv(common.PackerKeyEnv) } if c.RawBootKeyInterval == "" { - c.BootKeyInterval = common.PackerKeyDefault + c.BootKeyInterval = 5 * time.Millisecond } else { if interval, err := time.ParseDuration(c.RawBootKeyInterval); err == nil { c.BootKeyInterval = interval