From 86ca054f055a739a775bd2d3fdc65f4d514039aa Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 7 Oct 2016 21:32:46 +0200 Subject: config: remove unused parameter --- config/config.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/config.go b/config/config.go index eea8374a9..d8a0742c2 100644 --- a/config/config.go +++ b/config/config.go @@ -29,7 +29,6 @@ type Config struct { Cpu int // number of VM CPUs Mem int // amount of VM memory in MBs Sshkey string // root ssh key for the image - Port int // VM ssh port to use Bin string // qemu/lkvm binary name Debug bool // dump all VM output to console Output string // one of stdout/dmesg/file (useful only for local VM) @@ -285,7 +284,6 @@ func checkUnknownFields(data []byte) (string, error) { "Cpu", "Mem", "Sshkey", - "Port", "Bin", "Debug", "Output", -- cgit mrf-deployment