diff --git a/.gitignore b/.gitignore index fba5f31..f3f7945 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ AUTHORS ChangeLog .eggs *.egg-info +publish-image.sh diff --git a/test-image.sh b/test-image.sh new file mode 100755 index 0000000..019f940 --- /dev/null +++ b/test-image.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +qemu-img create -f qcow2 -b client.qcow2 client-test.qcow2 +kvm -m 512 -monitor none -nographic -drive file=client-test.qcow2,if=virtio,format=qcow2 -netdev user,id=net0 -device virtio-net-pci,netdev=net0 +rm client-test.qcow2