diff options
author | PMR <pmr@pmr-lander> | 2019-12-20 20:03:39 +0000 |
---|---|---|
committer | PMR <pmr@pmr-lander> | 2019-12-20 20:03:39 +0000 |
commit | 390f4caffb662d906d7957c672da4ff2ef7dcdef (patch) | |
tree | 46b3724b036a42c4ee1c8467a035cc550f6864ae | |
parent | 26be88defc7b3d92e03d429deac1e8d489ad8189 (diff) | |
parent | 89fbb8eb95174d05df962ffd25b04890e8f1b3b0 (diff) |
Merge #377074 from ~rodsmith/plainbox-provider-checkbox:fix-lxd-hang
Fixes bug in Ubuntu 19.10 that caused the LXD test to hang.
-rwxr-xr-x | bin/virtualization | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/virtualization b/bin/virtualization index de001a1..9784e56 100755 --- a/bin/virtualization +++ b/bin/virtualization @@ -552,7 +552,7 @@ class RunCommand(object): def run(self, cmd): proc = Popen(shlex.split(cmd), stdout=PIPE, stderr=PIPE, - universal_newlines=True) + stdin=DEVNULL, universal_newlines=True) self.stdout, self.stderr = proc.communicate() self.returncode = proc.returncode |