Browse Source

Don't pass stdin to VMs unless necessary.

Fixes QubesOS/qubes-issues#5562
3hhh 4 years ago
parent
commit
698bcc27ab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      qvm-tools/qubes-bug-report

+ 1 - 1
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