From: John Snow Date: Fri, 4 Jun 2021 15:55:32 +0000 (-0400) Subject: scripts/qemu-ga-client: Add forwarder shim X-Git-Tag: v6.1.0-rc0~66^2~42 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=88fb483fc559e297ee681e161d70c4615b2a28ea;p=thirdparty%2Fqemu.git scripts/qemu-ga-client: Add forwarder shim Add a little forwarder shim until we are sure that everyone is comfortable with how to use the tools in their new packaged location. Signed-off-by: John Snow Message-id: 20210604155532.1499282-12-jsnow@redhat.com Signed-off-by: John Snow --- diff --git a/scripts/qmp/qemu-ga-client b/scripts/qmp/qemu-ga-client new file mode 100755 index 00000000000..102fd2cad93 --- /dev/null +++ b/scripts/qmp/qemu-ga-client @@ -0,0 +1,11 @@ +#!/usr/bin/env python3 + +import os +import sys + +sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python')) +from qemu.qmp import qemu_ga_client + + +if __name__ == '__main__': + sys.exit(qemu_ga_client.main())