From 05d70da37cb5625bbc8bb14c95537d4db544b7b1 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Fri, 5 Jul 2013 14:08:14 -0700 Subject: [PATCH] fix(image_to_vm.sh): forward fewer ports we disabled systemd-rest for now so don't tell people to forward all of those ports. --- image_to_vm.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/image_to_vm.sh b/image_to_vm.sh index 41bfa68e44..302b05d596 100755 --- a/image_to_vm.sh +++ b/image_to_vm.sh @@ -248,8 +248,7 @@ fi if [ "${FLAGS_format}" == "qemu" ]; then echo "If you have qemu-kvm installed, you can start the image by:" echo "qemu-kvm -m ${FLAGS_mem} -curses -pidfile /tmp/kvm.pid -net nic,model=virtio \\" - echo " -net user,hostfwd=tcp::2222-:22,hostfwd=tcp::8080-:8080,hostfwd=::8000-:8000 \\" - echo " -hda ${FLAGS_to}/${DEFAULT_QEMU_IMAGE}" + echo " -net user,hostfwd=tcp::2222-:22 -hda ${FLAGS_to}/${DEFAULT_QEMU_IMAGE}" echo "SSH into the host with:" echo "ssh 127.0.0.1 -p 2222" fi