qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH v2 27/72] scripts/qemu-ga-client: Add forwarder stub


From: John Snow
Subject: [PATCH v2 27/72] scripts/qemu-ga-client: Add forwarder stub
Date: Tue, 3 Nov 2020 19:35:17 -0500

Mimicking other recently moved tools: add a little forwarder stub until
we are sure that everyone is comfortable understanding how to use the
tools in their new location.

Signed-off-by: John Snow <jsnow@redhat.com>
---
 scripts/qmp/qemu-ga-client | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100755 scripts/qmp/qemu-ga-client

diff --git a/scripts/qmp/qemu-ga-client b/scripts/qmp/qemu-ga-client
new file mode 100755
index 000000000000..102fd2cad93f
--- /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())
-- 
2.26.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]