Skip to content

Instantly share code, notes, and snippets.

@zaenk
Created April 20, 2019 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zaenk/cdb577d87023ee3442e2365fdb09d665 to your computer and use it in GitHub Desktop.
Save zaenk/cdb577d87023ee3442e2365fdb09d665 to your computer and use it in GitHub Desktop.
Packer ProxMox builder ignores HTTP errors when typing boot command
diff --git a/builder/proxmox/step_type_boot_command.go b/builder/proxmox/step_type_boot_command.go
index 89d50fb0d..04361ee21 100644
--- a/builder/proxmox/step_type_boot_command.go
+++ b/builder/proxmox/step_type_boot_command.go
@@ -26,7 +26,7 @@ type stepTypeBootCommand struct {
type bootCommandTemplateData struct {
HTTPIP string
- HTTPPort uint
+ HTTPPort int
}
type commandTyper interface {
@@ -66,7 +66,7 @@ func (s *stepTypeBootCommand) Run(ctx context.Context, state multistep.StateBag)
common.SetHTTPIP(httpIP)
s.Ctx.Data = &bootCommandTemplateData{
HTTPIP: httpIP,
- HTTPPort: state.Get("http_port").(uint),
+ HTTPPort: state.Get("http_port").(int),
}
ui.Say("Typing the boot command")
diff --git a/vendor/github.com/Telmate/proxmox-api-go/proxmox/client.go b/vendor/github.com/Telmate/proxmox-api-go/proxmox/client.go
index 50f2d9e09..b86201160 100644
--- a/vendor/github.com/Telmate/proxmox-api-go/proxmox/client.go
+++ b/vendor/github.com/Telmate/proxmox-api-go/proxmox/client.go
@@ -15,6 +15,7 @@ import (
"strconv"
"strings"
"time"
+ "log"
)
// TaskTimeout - default async task call timeout in seconds
@@ -274,9 +275,11 @@ func (c *Client) MonitorCmd(vmr *VmRef, command string) (monitorRes map[string]i
}
reqbody := ParamsToBody(map[string]interface{}{"command": command})
url := fmt.Sprintf("/nodes/%s/%s/%d/monitor", vmr.node, vmr.vmType, vmr.vmId)
+ log.Printf("Sending key %s %s", url, reqbody)
resp, err := c.session.Post(url, nil, nil, &reqbody)
monitorRes, err = ResponseJSON(resp)
- return
+ log.Printf("Key sent result %s %s %s", resp.StatusCode, monitorRes, err)
+ return monitorRes, err
}
// WaitForCompletion - poll the API for task completion
2019/04/20 09:42:39 [INFO] Packer version: 1.4.1-dev (a360516a6+CHANGES)
2019/04/20 09:42:39 Packer Target OS/Arch: linux amd64
2019/04/20 09:42:39 Built with Go Version: go1.12.4
2019/04/20 09:42:39 Detected home directory from env var: /home/zaenk
2019/04/20 09:42:39 Using internal plugin for lxc
2019/04/20 09:42:39 Using internal plugin for qemu
2019/04/20 09:42:39 Using internal plugin for yandex
2019/04/20 09:42:39 Using internal plugin for alicloud-ecs
2019/04/20 09:42:39 Using internal plugin for amazon-instance
2019/04/20 09:42:39 Using internal plugin for cloudstack
2019/04/20 09:42:39 Using internal plugin for hyperone
2019/04/20 09:42:39 Using internal plugin for amazon-ebssurrogate
2019/04/20 09:42:39 Using internal plugin for docker
2019/04/20 09:42:39 Using internal plugin for proxmox
2019/04/20 09:42:39 Using internal plugin for parallels-iso
2019/04/20 09:42:39 Using internal plugin for linode
2019/04/20 09:42:39 Using internal plugin for null
2019/04/20 09:42:39 Using internal plugin for oneandone
2019/04/20 09:42:39 Using internal plugin for oracle-oci
2019/04/20 09:42:39 Using internal plugin for ncloud
2019/04/20 09:42:39 Using internal plugin for openstack
2019/04/20 09:42:39 Using internal plugin for parallels-pvm
2019/04/20 09:42:39 Using internal plugin for tencentcloud-cvm
2019/04/20 09:42:39 Using internal plugin for vagrant
2019/04/20 09:42:39 Using internal plugin for googlecompute
2019/04/20 09:42:39 Using internal plugin for hyperv-iso
2019/04/20 09:42:39 Using internal plugin for hyperv-vmcx
2019/04/20 09:42:39 Using internal plugin for oracle-classic
2019/04/20 09:42:39 Using internal plugin for file
2019/04/20 09:42:39 Using internal plugin for lxd
2019/04/20 09:42:39 Using internal plugin for vmware-iso
2019/04/20 09:42:39 Using internal plugin for hcloud
2019/04/20 09:42:39 Using internal plugin for scaleway
2019/04/20 09:42:39 Using internal plugin for triton
2019/04/20 09:42:39 Using internal plugin for virtualbox-iso
2019/04/20 09:42:39 Using internal plugin for amazon-ebs
2019/04/20 09:42:39 Using internal plugin for amazon-ebsvolume
2019/04/20 09:42:39 Using internal plugin for azure-arm
2019/04/20 09:42:39 Using internal plugin for digitalocean
2019/04/20 09:42:39 Using internal plugin for amazon-chroot
2019/04/20 09:42:39 Using internal plugin for profitbricks
2019/04/20 09:42:39 Using internal plugin for virtualbox-ovf
2019/04/20 09:42:39 Using internal plugin for vmware-vmx
2019/04/20 09:42:39 Using internal plugin for puppet-server
2019/04/20 09:42:39 Using internal plugin for shell
2019/04/20 09:42:39 Using internal plugin for windows-restart
2019/04/20 09:42:39 Using internal plugin for converge
2019/04/20 09:42:39 Using internal plugin for powershell
2019/04/20 09:42:39 Using internal plugin for ansible-local
2019/04/20 09:42:39 Using internal plugin for file
2019/04/20 09:42:39 Using internal plugin for salt-masterless
2019/04/20 09:42:39 Using internal plugin for sleep
2019/04/20 09:42:39 Using internal plugin for windows-shell
2019/04/20 09:42:39 Using internal plugin for chef-client
2019/04/20 09:42:39 Using internal plugin for puppet-masterless
2019/04/20 09:42:39 Using internal plugin for chef-solo
2019/04/20 09:42:39 Using internal plugin for inspec
2019/04/20 09:42:39 Using internal plugin for shell-local
2019/04/20 09:42:39 Using internal plugin for ansible
2019/04/20 09:42:39 Using internal plugin for breakpoint
2019/04/20 09:42:39 Using internal plugin for googlecompute-import
2019/04/20 09:42:39 Using internal plugin for vagrant
2019/04/20 09:42:39 Using internal plugin for vsphere
2019/04/20 09:42:39 Using internal plugin for amazon-import
2019/04/20 09:42:39 Using internal plugin for checksum
2019/04/20 09:42:39 Using internal plugin for docker-push
2019/04/20 09:42:39 Using internal plugin for artifice
2019/04/20 09:42:39 Using internal plugin for compress
2019/04/20 09:42:39 Using internal plugin for docker-save
2019/04/20 09:42:39 Using internal plugin for vagrant-cloud
2019/04/20 09:42:39 Using internal plugin for vsphere-template
2019/04/20 09:42:39 Using internal plugin for alicloud-import
2019/04/20 09:42:39 Using internal plugin for digitalocean-import
2019/04/20 09:42:39 Using internal plugin for docker-import
2019/04/20 09:42:39 Using internal plugin for docker-tag
2019/04/20 09:42:39 Using internal plugin for googlecompute-export
2019/04/20 09:42:39 Using internal plugin for manifest
2019/04/20 09:42:39 Using internal plugin for shell-local
2019/04/20 09:42:39 Detected home directory from env var: /home/zaenk
2019/04/20 09:42:39 Attempting to open config file: /home/zaenk/.packerconfig
2019/04/20 09:42:39 [WARN] Config file doesn't exist: /home/zaenk/.packerconfig
2019/04/20 09:42:39 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[alicloud-ecs:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-alicloud-ecs amazon-chroot:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-chroot amazon-ebs:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebs amazon-ebssurrogate:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebssurrogate amazon-ebsvolume:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-ebsvolume amazon-instance:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-amazon-instance azure-arm:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-azure-arm cloudstack:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-cloudstack digitalocean:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-digitalocean docker:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-docker file:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-file googlecompute:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-googlecompute hcloud:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hcloud hyperone:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperone hyperv-iso:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-iso hyperv-vmcx:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-hyperv-vmcx linode:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-linode lxc:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxc lxd:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-lxd ncloud:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-ncloud null:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-null oneandone:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oneandone openstack:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-openstack oracle-classic:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oracle-classic oracle-oci:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-oracle-oci parallels-iso:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-iso parallels-pvm:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-parallels-pvm profitbricks:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-profitbricks proxmox:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-proxmox qemu:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-qemu scaleway:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-scaleway tencentcloud-cvm:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-tencentcloud-cvm triton:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-triton vagrant:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vagrant virtualbox-iso:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-iso virtualbox-ovf:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-virtualbox-ovf vmware-iso:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-iso vmware-vmx:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-vmware-vmx yandex:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-builder-yandex] PostProcessors:map[alicloud-import:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-alicloud-import amazon-import:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-amazon-import artifice:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-artifice checksum:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-checksum compress:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-compress digitalocean-import:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-digitalocean-import docker-import:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-import docker-push:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-push docker-save:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-save docker-tag:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-docker-tag googlecompute-export:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-googlecompute-export googlecompute-import:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-googlecompute-import manifest:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-manifest shell-local:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-shell-local vagrant:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant vagrant-cloud:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vagrant-cloud vsphere:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere vsphere-template:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-post-processor-vsphere-template] Provisioners:map[ansible:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible ansible-local:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-ansible-local breakpoint:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-breakpoint chef-client:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-client chef-solo:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-chef-solo converge:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-converge file:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-file inspec:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-inspec powershell:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-powershell puppet-masterless:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-masterless puppet-server:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-puppet-server salt-masterless:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-salt-masterless shell:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell shell-local:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-shell-local sleep:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-sleep windows-restart:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-restart windows-shell:/home/zaenk/packer-20190419-4-PACKERSPACE-plugin-PACKERSPACE-packer-provisioner-windows-shell]}
2019/04/20 09:42:39 Detected home directory from env var: /home/zaenk
2019/04/20 09:42:39 Setting cache directory: /home/zaenk/base-image-packer/packer_cache
2019/04/20 09:42:39 Detected home directory from env var: /home/zaenk
2019/04/20 09:42:39 Loading builder: proxmox
2019/04/20 09:42:39 Plugin could not be found. Checking same directory as executable.
2019/04/20 09:42:39 Current exe path: /home/zaenk/packer-20190419-4
2019/04/20 09:42:39 Creating plugin client for path: /home/zaenk/packer-20190419-4
2019/04/20 09:42:39 Starting plugin: /home/zaenk/packer-20190419-4 []string{"/home/zaenk/packer-20190419-4", "plugin", "packer-builder-proxmox"}
2019/04/20 09:42:39 Waiting for RPC address for: /home/zaenk/packer-20190419-4
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 [INFO] Packer version: 1.4.1-dev (a360516a6+CHANGES)
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Packer Target OS/Arch: linux amd64
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Built with Go Version: go1.12.4
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Detected home directory from env var: /home/zaenk
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Attempting to open config file: /home/zaenk/.packerconfig
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 [WARN] Config file doesn't exist: /home/zaenk/.packerconfig
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Packer config: &{DisableCheckpoint:false DisableCheckpointSignature:false PluginMinPort:10000 PluginMaxPort:25000 Builders:map[] PostProcessors:map[] Provisioners:map[]}
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Detected home directory from env var: /home/zaenk
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Setting cache directory: /home/zaenk/base-image-packer/packer_cache
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 args: []string{"packer-builder-proxmox"}
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Plugin minimum port: 10000
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Plugin maximum port: 25000
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Detected home directory from env var: /home/zaenk
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Plugin address: unix /tmp/packer-plugin641490621
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Waiting for connection...
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Serving a plugin connection...
2019/04/20 09:42:39 ui: proxmox output will be in this color.
2019/04/20 09:42:39 ui:
2019/04/20 09:42:39 Build debug mode: false
2019/04/20 09:42:39 Force build: false
2019/04/20 09:42:39 On error:
2019/04/20 09:42:39 Preparing build: proxmox
2019/04/20 09:42:39 packer-20190419-4: 2019/04/20 09:42:39 Disk 0 cache mode not set, using default 'none'
2019/04/20 09:42:39 Waiting on builds to complete...
2019/04/20 09:42:39 Starting build run: proxmox
2019/04/20 09:42:39 Running builder: proxmox
2019/04/20 09:42:39 [INFO] (telemetry) Starting builder proxmox
2019/04/20 09:42:39 ui: ==> proxmox: Creating VM
2019/04/20 09:42:41 ui: ==> proxmox: Starting VM
2019/04/20 09:42:43 packer-20190419-4: 2019/04/20 09:42:43 Trying port: 8365
2019/04/20 09:42:43 packer-20190419-4: 2019/04/20 09:42:43 Found available port: 8365 on IP: 0.0.0.0
2019/04/20 09:42:43 ui: ==> proxmox: Starting HTTP server on port 8365
2019/04/20 09:42:43 ui: ==> proxmox: Waiting 10s for boot
2019/04/20 09:42:53 ui: ==> proxmox: Typing the boot command
2019/04/20 09:42:53 packer-20190419-4: 2019/04/20 09:42:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+esc
2019/04/20 09:42:53 packer-20190419-4: 2019/04/20 09:42:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:42:53 packer-20190419-4: 2019/04/20 09:42:53 [INFO] Waiting 1s
2019/04/20 09:42:54 packer-20190419-4: 2019/04/20 09:42:54 Sending key /nodes/host0/qemu/199/monitor command=sendkey+down
2019/04/20 09:42:54 packer-20190419-4: 2019/04/20 09:42:54 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:42:54 packer-20190419-4: 2019/04/20 09:42:54 [INFO] Waiting 1s
2019/04/20 09:42:55 packer-20190419-4: 2019/04/20 09:42:55 Sending key /nodes/host0/qemu/199/monitor command=sendkey+down
2019/04/20 09:42:55 packer-20190419-4: 2019/04/20 09:42:55 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:42:55 packer-20190419-4: 2019/04/20 09:42:55 [INFO] Waiting 1s
2019/04/20 09:42:56 packer-20190419-4: 2019/04/20 09:42:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+down
2019/04/20 09:42:56 packer-20190419-4: 2019/04/20 09:42:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:42:56 packer-20190419-4: 2019/04/20 09:42:56 [INFO] Waiting 1s
2019/04/20 09:42:57 packer-20190419-4: 2019/04/20 09:42:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+down
2019/04/20 09:42:57 packer-20190419-4: 2019/04/20 09:42:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:42:57 packer-20190419-4: 2019/04/20 09:42:57 [INFO] Waiting 1s
2019/04/20 09:42:58 packer-20190419-4: 2019/04/20 09:42:58 Sending key /nodes/host0/qemu/199/monitor command=sendkey+down
2019/04/20 09:42:58 packer-20190419-4: 2019/04/20 09:42:58 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:42:59 packer-20190419-4: 2019/04/20 09:42:59 [INFO] Waiting 1s
2019/04/20 09:43:00 packer-20190419-4: 2019/04/20 09:43:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+down
2019/04/20 09:43:00 packer-20190419-4: 2019/04/20 09:43:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:00 packer-20190419-4: 2019/04/20 09:43:00 [INFO] Waiting 1s
2019/04/20 09:43:01 packer-20190419-4: 2019/04/20 09:43:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+down
2019/04/20 09:43:01 packer-20190419-4: 2019/04/20 09:43:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:01 packer-20190419-4: 2019/04/20 09:43:01 [INFO] Waiting 1s
2019/04/20 09:43:02 packer-20190419-4: 2019/04/20 09:43:02 Sending key /nodes/host0/qemu/199/monitor command=sendkey+down
2019/04/20 09:43:02 packer-20190419-4: 2019/04/20 09:43:02 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:02 packer-20190419-4: 2019/04/20 09:43:02 [INFO] Waiting 1s
2019/04/20 09:43:03 packer-20190419-4: 2019/04/20 09:43:03 Sending key /nodes/host0/qemu/199/monitor command=sendkey+down
2019/04/20 09:43:03 packer-20190419-4: 2019/04/20 09:43:03 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:03 packer-20190419-4: 2019/04/20 09:43:03 [INFO] Waiting 1s
2019/04/20 09:43:04 packer-20190419-4: 2019/04/20 09:43:04 Sending key /nodes/host0/qemu/199/monitor command=sendkey+ret
2019/04/20 09:43:04 packer-20190419-4: 2019/04/20 09:43:04 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:04 packer-20190419-4: 2019/04/20 09:43:04 [INFO] Waiting 1s
2019/04/20 09:43:05 packer-20190419-4: 2019/04/20 09:43:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:05 packer-20190419-4: 2019/04/20 09:43:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:05 packer-20190419-4: 2019/04/20 09:43:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:05 packer-20190419-4: 2019/04/20 09:43:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:05 packer-20190419-4: 2019/04/20 09:43:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:05 packer-20190419-4: 2019/04/20 09:43:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:05 packer-20190419-4: 2019/04/20 09:43:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:05 packer-20190419-4: 2019/04/20 09:43:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+v
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+m
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:06 packer-20190419-4: 2019/04/20 09:43:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:07 packer-20190419-4: 2019/04/20 09:43:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:07 packer-20190419-4: 2019/04/20 09:43:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:07 packer-20190419-4: 2019/04/20 09:43:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:07 packer-20190419-4: 2019/04/20 09:43:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+z
2019/04/20 09:43:07 packer-20190419-4: 2019/04/20 09:43:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:07 packer-20190419-4: 2019/04/20 09:43:07 [INFO] Waiting 1s
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:08 packer-20190419-4: 2019/04/20 09:43:08 [INFO] Waiting 1s
2019/04/20 09:43:09 packer-20190419-4: 2019/04/20 09:43:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:09 packer-20190419-4: 2019/04/20 09:43:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:10 packer-20190419-4: 2019/04/20 09:43:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+p
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+k
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-minus
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:11 packer-20190419-4: 2019/04/20 09:43:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:12 packer-20190419-4: 2019/04/20 09:43:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:13 packer-20190419-4: 2019/04/20 09:43:13 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:13 packer-20190419-4: 2019/04/20 09:43:13 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:13 packer-20190419-4: 2019/04/20 09:43:13 [INFO] Waiting 1s
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:14 packer-20190419-4: 2019/04/20 09:43:14 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+p
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Sending key /nodes/host0/qemu/199/monitor command=sendkey+y
2019/04/20 09:43:15 packer-20190419-4: 2019/04/20 09:43:15 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:16 packer-20190419-4: 2019/04/20 09:43:16 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:17 packer-20190419-4: 2019/04/20 09:43:17 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:17 packer-20190419-4: 2019/04/20 09:43:17 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:17 packer-20190419-4: 2019/04/20 09:43:17 [INFO] Waiting 1s
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:18 packer-20190419-4: 2019/04/20 09:43:18 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+p
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+m
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:19 packer-20190419-4: 2019/04/20 09:43:19 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Sending key /nodes/host0/qemu/199/monitor command=sendkey+p
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:20 packer-20190419-4: 2019/04/20 09:43:20 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:21 packer-20190419-4: 2019/04/20 09:43:21 Sending key /nodes/host0/qemu/199/monitor command=sendkey+1
2019/04/20 09:43:21 packer-20190419-4: 2019/04/20 09:43:21 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:21 packer-20190419-4: 2019/04/20 09:43:21 Sending key /nodes/host0/qemu/199/monitor command=sendkey+0
2019/04/20 09:43:21 packer-20190419-4: 2019/04/20 09:43:21 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:21 packer-20190419-4: 2019/04/20 09:43:21 Sending key /nodes/host0/qemu/199/monitor command=sendkey+5
2019/04/20 09:43:21 packer-20190419-4: 2019/04/20 09:43:21 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:21 packer-20190419-4: 2019/04/20 09:43:21 [INFO] Waiting 1s
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:22 packer-20190419-4: 2019/04/20 09:43:22 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:23 packer-20190419-4: 2019/04/20 09:43:23 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:24 packer-20190419-4: 2019/04/20 09:43:24 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Sending key /nodes/host0/qemu/199/monitor command=sendkey+v
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:25 packer-20190419-4: 2019/04/20 09:43:25 [INFO] Waiting 1s
2019/04/20 09:43:26 packer-20190419-4: 2019/04/20 09:43:26 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:26 packer-20190419-4: 2019/04/20 09:43:26 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:26 packer-20190419-4: 2019/04/20 09:43:26 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:26 packer-20190419-4: 2019/04/20 09:43:26 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:27 packer-20190419-4: 2019/04/20 09:43:27 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-minus
2019/04/20 09:43:28 packer-20190419-4: 2019/04/20 09:43:28 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:29 packer-20190419-4: 2019/04/20 09:43:29 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-u
2019/04/20 09:43:29 packer-20190419-4: 2019/04/20 09:43:29 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:29 packer-20190419-4: 2019/04/20 09:43:29 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-s
2019/04/20 09:43:29 packer-20190419-4: 2019/04/20 09:43:29 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:29 packer-20190419-4: 2019/04/20 09:43:29 [INFO] Waiting 1s
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:30 packer-20190419-4: 2019/04/20 09:43:30 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:31 packer-20190419-4: 2019/04/20 09:43:31 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:31 packer-20190419-4: 2019/04/20 09:43:31 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:31 packer-20190419-4: 2019/04/20 09:43:31 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:31 packer-20190419-4: 2019/04/20 09:43:31 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:31 packer-20190419-4: 2019/04/20 09:43:31 [INFO] Waiting 1s
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:32 packer-20190419-4: 2019/04/20 09:43:32 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:33 packer-20190419-4: 2019/04/20 09:43:33 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Sending key /nodes/host0/qemu/199/monitor command=sendkey+dot
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Sending key /nodes/host0/qemu/199/monitor command=sendkey+g
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Sending key /nodes/host0/qemu/199/monitor command=sendkey+z
2019/04/20 09:43:34 packer-20190419-4: 2019/04/20 09:43:34 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:35 packer-20190419-4: 2019/04/20 09:43:35 [INFO] Waiting 1s
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+k
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+h
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:36 packer-20190419-4: 2019/04/20 09:43:36 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Sending key /nodes/host0/qemu/199/monitor command=sendkey+m
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Sending key /nodes/host0/qemu/199/monitor command=sendkey+h
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:37 packer-20190419-4: 2019/04/20 09:43:37 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:38 packer-20190419-4: 2019/04/20 09:43:38 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:38 packer-20190419-4: 2019/04/20 09:43:38 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:38 packer-20190419-4: 2019/04/20 09:43:38 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:38 packer-20190419-4: 2019/04/20 09:43:38 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:38 packer-20190419-4: 2019/04/20 09:43:38 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:38 packer-20190419-4: 2019/04/20 09:43:38 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:38 packer-20190419-4: 2019/04/20 09:43:38 [INFO] Waiting 1s
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Sending key /nodes/host0/qemu/199/monitor command=sendkey+k
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Sending key /nodes/host0/qemu/199/monitor command=sendkey+y
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:39 packer-20190419-4: 2019/04/20 09:43:39 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Sending key /nodes/host0/qemu/199/monitor command=sendkey+g
2019/04/20 09:43:40 packer-20190419-4: 2019/04/20 09:43:40 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:41 packer-20190419-4: 2019/04/20 09:43:41 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Sending key /nodes/host0/qemu/199/monitor command=sendkey+y
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-u
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-s
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-a
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:42 packer-20190419-4: 2019/04/20 09:43:42 [INFO] Waiting 1s
2019/04/20 09:43:43 packer-20190419-4: 2019/04/20 09:43:43 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:43 packer-20190419-4: 2019/04/20 09:43:43 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+k
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+y
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:44 packer-20190419-4: 2019/04/20 09:43:44 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Sending key /nodes/host0/qemu/199/monitor command=sendkey+g
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:45 packer-20190419-4: 2019/04/20 09:43:45 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+v
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:46 packer-20190419-4: 2019/04/20 09:43:46 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-u
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-s
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-a
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:47 packer-20190419-4: 2019/04/20 09:43:47 [INFO] Waiting 1s
2019/04/20 09:43:48 packer-20190419-4: 2019/04/20 09:43:48 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:48 packer-20190419-4: 2019/04/20 09:43:48 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:48 packer-20190419-4: 2019/04/20 09:43:48 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:48 packer-20190419-4: 2019/04/20 09:43:48 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:48 packer-20190419-4: 2019/04/20 09:43:48 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:48 packer-20190419-4: 2019/04/20 09:43:48 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:48 packer-20190419-4: 2019/04/20 09:43:48 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:48 packer-20190419-4: 2019/04/20 09:43:48 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-minus
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-u
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-s
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:49 packer-20190419-4: 2019/04/20 09:43:49 [INFO] Waiting 1s
2019/04/20 09:43:50 packer-20190419-4: 2019/04/20 09:43:50 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:50 packer-20190419-4: 2019/04/20 09:43:50 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Sending key /nodes/host0/qemu/199/monitor command=sendkey+g
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Sending key /nodes/host0/qemu/199/monitor command=sendkey+g
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:51 packer-20190419-4: 2019/04/20 09:43:51 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-minus
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+m
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Sending key /nodes/host0/qemu/199/monitor command=sendkey+w
2019/04/20 09:43:52 packer-20190419-4: 2019/04/20 09:43:52 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+w
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+h
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+m
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Sending key /nodes/host0/qemu/199/monitor command=sendkey+dot
2019/04/20 09:43:53 packer-20190419-4: 2019/04/20 09:43:53 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:54 packer-20190419-4: 2019/04/20 09:43:54 [INFO] Waiting 1s
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:43:55 packer-20190419-4: 2019/04/20 09:43:55 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+g
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+g
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-minus
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+h
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:43:56 packer-20190419-4: 2019/04/20 09:43:56 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+m
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:43:57 packer-20190419-4: 2019/04/20 09:43:57 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:58 packer-20190419-4: 2019/04/20 09:43:58 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:43:58 packer-20190419-4: 2019/04/20 09:43:58 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:58 packer-20190419-4: 2019/04/20 09:43:58 [INFO] Waiting 1s
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Sending key /nodes/host0/qemu/199/monitor command=sendkey+g
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:43:59 packer-20190419-4: 2019/04/20 09:43:59 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+b
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:44:00 packer-20190419-4: 2019/04/20 09:44:00 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+v
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:44:01 packer-20190419-4: 2019/04/20 09:44:01 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Sending key /nodes/host0/qemu/199/monitor command=sendkey+v
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Sending key /nodes/host0/qemu/199/monitor command=sendkey+v
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:02 packer-20190419-4: 2019/04/20 09:44:02 [INFO] Waiting 1s
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Sending key /nodes/host0/qemu/199/monitor command=sendkey+n
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Sending key /nodes/host0/qemu/199/monitor command=sendkey+o
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Sending key /nodes/host0/qemu/199/monitor command=sendkey+a
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Sending key /nodes/host0/qemu/199/monitor command=sendkey+p
2019/04/20 09:44:03 packer-20190419-4: 2019/04/20 09:44:03 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:04 packer-20190419-4: 2019/04/20 09:44:04 Sending key /nodes/host0/qemu/199/monitor command=sendkey+i
2019/04/20 09:44:04 packer-20190419-4: 2019/04/20 09:44:04 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:04 packer-20190419-4: 2019/04/20 09:44:04 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:44:04 packer-20190419-4: 2019/04/20 09:44:04 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:04 packer-20190419-4: 2019/04/20 09:44:04 [INFO] Waiting 1s
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+p
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:44:05 packer-20190419-4: 2019/04/20 09:44:05 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+u
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+l
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+equal
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+h
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Sending key /nodes/host0/qemu/199/monitor command=sendkey+t
2019/04/20 09:44:06 packer-20190419-4: 2019/04/20 09:44:06 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+p
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-semicolon
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+5
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+dot
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+9
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+dot
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+7
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Sending key /nodes/host0/qemu/199/monitor command=sendkey+2
2019/04/20 09:44:07 packer-20190419-4: 2019/04/20 09:44:07 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+dot
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+1
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+4
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+3
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+shift-semicolon
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+8
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+3
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+6
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Sending key /nodes/host0/qemu/199/monitor command=sendkey+5
2019/04/20 09:44:08 packer-20190419-4: 2019/04/20 09:44:08 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+slash
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+p
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+r
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+s
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+e
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+d
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Sending key /nodes/host0/qemu/199/monitor command=sendkey+dot
2019/04/20 09:44:09 packer-20190419-4: 2019/04/20 09:44:09 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:10 packer-20190419-4: 2019/04/20 09:44:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+c
2019/04/20 09:44:10 packer-20190419-4: 2019/04/20 09:44:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:10 packer-20190419-4: 2019/04/20 09:44:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+f
2019/04/20 09:44:10 packer-20190419-4: 2019/04/20 09:44:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:10 packer-20190419-4: 2019/04/20 09:44:10 Sending key /nodes/host0/qemu/199/monitor command=sendkey+g
2019/04/20 09:44:10 packer-20190419-4: 2019/04/20 09:44:10 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:10 packer-20190419-4: 2019/04/20 09:44:10 [INFO] Waiting 1s
2019/04/20 09:44:11 packer-20190419-4: 2019/04/20 09:44:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:44:11 packer-20190419-4: 2019/04/20 09:44:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:11 packer-20190419-4: 2019/04/20 09:44:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:44:11 packer-20190419-4: 2019/04/20 09:44:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:11 packer-20190419-4: 2019/04/20 09:44:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+minus
2019/04/20 09:44:11 packer-20190419-4: 2019/04/20 09:44:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:11 packer-20190419-4: 2019/04/20 09:44:11 Sending key /nodes/host0/qemu/199/monitor command=sendkey+spc
2019/04/20 09:44:11 packer-20190419-4: 2019/04/20 09:44:11 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:11 packer-20190419-4: 2019/04/20 09:44:11 [INFO] Waiting 1s
2019/04/20 09:44:12 packer-20190419-4: 2019/04/20 09:44:12 Sending key /nodes/host0/qemu/199/monitor command=sendkey+ret
2019/04/20 09:44:12 packer-20190419-4: 2019/04/20 09:44:12 Key sent result %!s(int=403) map[data:<nil>] %!s(<nil>)
2019/04/20 09:44:12 packer-20190419-4: 2019/04/20 09:44:12 [INFO] Waiting 1s
2019/04/20 09:44:16 packer-20190419-4: 2019/04/20 09:44:16 [DEBUG] Unable to get address during connection step: 500 QEMU guest agent is not running
2019/04/20 09:44:16 packer-20190419-4: 2019/04/20 09:44:16 [INFO] Waiting for SSH, up to timeout: 15m0s
2019/04/20 09:44:16 ui: ==> proxmox: Waiting for SSH to become available...
2019/04/20 09:44:19 packer-20190419-4: 2019/04/20 09:44:19 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:44:27 packer-20190419-4: 2019/04/20 09:44:27 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:44:35 packer-20190419-4: 2019/04/20 09:44:35 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:44:43 packer-20190419-4: 2019/04/20 09:44:43 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:44:51 packer-20190419-4: 2019/04/20 09:44:51 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:44:59 packer-20190419-4: 2019/04/20 09:44:59 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:45:07 packer-20190419-4: 2019/04/20 09:45:07 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:45:15 packer-20190419-4: 2019/04/20 09:45:15 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:45:23 packer-20190419-4: 2019/04/20 09:45:23 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:45:31 packer-20190419-4: 2019/04/20 09:45:31 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:45:39 packer-20190419-4: 2019/04/20 09:45:39 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:45:47 packer-20190419-4: 2019/04/20 09:45:47 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:45:55 packer-20190419-4: 2019/04/20 09:45:55 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:46:03 packer-20190419-4: 2019/04/20 09:46:03 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:46:12 packer-20190419-4: 2019/04/20 09:46:12 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:46:19 packer-20190419-4: 2019/04/20 09:46:19 Received interrupt signal (count: 1). Ignoring.
2019/04/20 09:46:19 Stopping build: proxmox after receiving interrupt
2019/04/20 09:46:19 Build cancelled: proxmox
2019/04/20 09:46:19 Cancelling builder after context cancellation context canceled
2019/04/20 09:46:19 packer-20190419-4: 2019/04/20 09:46:19 [WARN] Interrupt detected, quitting waiting for SSH.
2019/04/20 09:46:19 ui: ==> proxmox: Stopping VM
2019/04/20 09:46:20 packer-20190419-4: 2019/04/20 09:46:20 [DEBUG] Error getting SSH address: 500 QEMU guest agent is not running
2019/04/20 09:46:20 packer-20190419-4: 2019/04/20 09:46:20 [DEBUG] SSH wait cancelled. Exiting loop.
2019/04/20 09:46:21 ui: ==> proxmox: Deleting VM
2019/04/20 09:46:23 packer-20190419-4: panic: interface conversion: interface {} is nil, not int
2019/04/20 09:46:23 packer-20190419-4:
2019/04/20 09:46:23 packer-20190419-4: goroutine 169 [running]:
2019/04/20 09:46:23 packer-20190419-4: github.com/hashicorp/packer/builder/proxmox.(*Builder).Run(0xc00032ed80, 0x35c92a0, 0xc0005a60c0, 0x35d9ba0, 0xc00001a040, 0x356ca80, 0xc000154010, 0x40d5d9, 0xc0005a25d0, 0x30, ...)
2019/04/20 09:46:23 packer-20190419-4: /go/src/github.com/hashicorp/packer/builder/proxmox/builder.go:94 +0xd20
2019/04/20 09:46:23 packer-20190419-4: github.com/hashicorp/packer/packer/rpc.(*BuilderServer).Run(0xc00030e510, 0x1, 0xc00026f820, 0x0, 0x0)
2019/04/20 09:46:23 packer-20190419-4: /go/src/github.com/hashicorp/packer/packer/rpc/builder.go:109 +0x231
2019/04/20 09:46:23 packer-20190419-4: reflect.Value.call(0xc0003ea1e0, 0xc000490058, 0x13, 0x305b335, 0x4, 0xc000098f18, 0x3, 0x3, 0xc000344080, 0x0, ...)
2019/04/20 09:46:23 packer-20190419-4: /usr/local/go/src/reflect/value.go:447 +0x461
2019/04/20 09:46:23 packer-20190419-4: reflect.Value.Call(0xc0003ea1e0, 0xc000490058, 0x13, 0xc0003a9f18, 0x3, 0x3, 0x0, 0x0, 0x0)
2019/04/20 09:46:23 packer-20190419-4: /usr/local/go/src/reflect/value.go:308 +0xa4
2019/04/20 09:46:23 packer-20190419-4: net/rpc.(*service).call(0xc000330e80, 0xc0003e8050, 0xc00042c040, 0xc00042c050, 0xc0004d8100, 0xc00000e320, 0x27af300, 0xc00026f7fc, 0x18a, 0x271dc20, ...)
2019/04/20 09:46:23 packer-20190419-4: /usr/local/go/src/net/rpc/server.go:384 +0x14e
2019/04/20 09:46:23 packer-20190419-4: created by net/rpc.(*Server).ServeCodec
2019/04/20 09:46:23 packer-20190419-4: /usr/local/go/src/net/rpc/server.go:481 +0x42b
2019/04/20 09:46:23 [INFO] (telemetry) ending proxmox
2019/04/20 09:46:23 ui error: Build 'proxmox' errored: unexpected EOF
2019/04/20 09:46:23 Builds completed. Waiting on interrupt barrier...
2019/04/20 09:46:23 ui: Cleanly cancelled builds after being interrupted.
2019/04/20 09:46:23 /home/zaenk/packer-20190419-4: plugin process exited
2019/04/20 09:46:23 [INFO] (telemetry) Finalizing.
2019/04/20 09:46:24 waiting for all plugin processes to complete...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment