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 <jsnow@redhat.com>
Message-id: 20210604155532.1499282-12-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
John Snow 2021-06-04 11:55:32 -04:00
parent 7e7c2a0de7
commit 88fb483fc5
1 changed files with 11 additions and 0 deletions

11
scripts/qmp/qemu-ga-client Executable file
View File

@ -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())