dom0/qubesutils: additional types of run comand in vm (wait and popen)
This commit is contained in:
parent
ead9e445bc
commit
2aedf4567b
@ -229,7 +229,7 @@ def block_detach(vm, frontend = "xvdi", vm_xid = None):
|
|||||||
xl_cmd = [ '/usr/sbin/xl', 'block-detach', str(vm_xid), str(frontend)]
|
xl_cmd = [ '/usr/sbin/xl', 'block-detach', str(vm_xid), str(frontend)]
|
||||||
subprocess.check_call(xl_cmd)
|
subprocess.check_call(xl_cmd)
|
||||||
|
|
||||||
def run_in_vm(vm, command, verbose = True, autostart = False, notify_function = None, passio = False, localcmd = None):
|
def run_in_vm(vm, command, verbose = True, autostart = False, notify_function = None, passio = False, passio_popen = False, localcmd = None, wait = False):
|
||||||
assert vm is not None
|
assert vm is not None
|
||||||
|
|
||||||
if not vm.is_running():
|
if not vm.is_running():
|
||||||
@ -258,7 +258,11 @@ def run_in_vm(vm, command, verbose = True, autostart = False, notify_function =
|
|||||||
if passio:
|
if passio:
|
||||||
os.execv(qrexec_client_path, args)
|
os.execv(qrexec_client_path, args)
|
||||||
exit(1)
|
exit(1)
|
||||||
args += ["-e"]
|
if passio_popen:
|
||||||
|
p = subprocess.Popen (args, stdout=subprocess.PIPE)
|
||||||
|
return p
|
||||||
|
if not wait:
|
||||||
|
args += ["-e"]
|
||||||
return subprocess.call(args)
|
return subprocess.call(args)
|
||||||
|
|
||||||
# vim:sw=4:et:
|
# vim:sw=4:et:
|
||||||
|
Loading…
Reference in New Issue
Block a user