Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/vfkit/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ func newVMConfiguration(opts *cmdline.Options) (*config.VirtualMachine, error) {
return nil, err
}

log.Info(opts)
log.Infof("boot parameters: %+v", bootloader)
log.Debugf("parsed options: %+v", opts)
log.Debugf("boot parameters: %+v", bootloader)
log.Info()

vmConfig := config.NewVirtualMachine(
Expand Down
2 changes: 1 addition & 1 deletion contrib/scripts/start-gvproxy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ set -exuo pipefail
DISK_IMAGE="${1?Usage: $0 diskimage}"
VM_NAME="$(basename ${DISK_IMAGE})"

${GVPROXY} -mtu 1500 -ssh-port 2223 -listen-vfkit unixgram://$(pwd)/${VM_NAME}.sock -log-file ${VM_NAME}.gvproxy.log --pid-file ${VM_NAME}.gvproxy.pid &
${GVPROXY} --mtu 1500 --ssh-port 2223 --listen-vfkit unixgram://$(pwd)/${VM_NAME}.sock --log-file ${VM_NAME}.gvproxy.log --pid-file ${VM_NAME}.gvproxy.pid &

TO_REMOVE="${VM_NAME}.sock ${VM_NAME}.gvproxy.pid ${VM_NAME}.overlay.img ${VM_NAME}.efistore.nvram"
trap 'if [[ -f "${VM_NAME}.gvproxy.pid" ]]; then kill $(cat ${VM_NAME}.gvproxy.pid); fi; rm -f ${TO_REMOVE}' EXIT
Expand Down
2 changes: 1 addition & 1 deletion doc/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Set the log-level for VFKit. Supported values are `debug`, `info`, and `error`.

- `--restful-uri`

The URI (address) of the RESTful service. The default is `tcp://localhost:8081`. Valid schemes are
The URI (address) of the RESTful service. By default it’s disabled. Valid schemes are
`tcp`, `none`, or `unix`. In the case of unix, the "host" portion would be a path to where the unix domain socket will be stored. A scheme of `none` disables the RESTful service.

### Virtual Machine Resources
Expand Down