From 698bcc27abe659372138cef731641b56fa695e91 Mon Sep 17 00:00:00 2001 From: 3hhh Date: Wed, 15 Jan 2020 15:18:43 +0100 Subject: [PATCH] Don't pass stdin to VMs unless necessary. Fixes QubesOS/qubes-issues#5562 --- qvm-tools/qubes-bug-report | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qvm-tools/qubes-bug-report b/qvm-tools/qubes-bug-report index 9bb23fcc..b76eb5e9 100755 --- a/qvm-tools/qubes-bug-report +++ b/qvm-tools/qubes-bug-report @@ -15,7 +15,7 @@ def is_program_installed_in_qube( program, qube_name ): try: command = 'command -v ' + program - subprocess.check_call([ 'qvm-run', qube_name, '--pass-io', '--no-color-output', command ], stdout = open( os.devnull, 'w' ) ) + subprocess.check_call([ 'qvm-run', '--no-color-output', qube_name, command ], stdout = open( os.devnull, 'w' ) ) except subprocess.CalledProcessError: is_installed = False