diff options
author | Silas Sewell <silas@sewell.ch> | 2008-11-25 10:19:03 -0700 |
---|---|---|
committer | Adrian Likins <alikins@redhat.com> | 2008-11-25 12:58:28 -0500 |
commit | 2713a451f5c33bc17e2d79cfaedbb074c716b896 (patch) | |
tree | 6d517fdf9fc18d2680da986a003447200381928e /func/minion/modules/virt.py | |
parent | 6b16e2f8250ed91c4d5c7642e15b2e2d30b49352 (diff) | |
download | func-2713a451f5c33bc17e2d79cfaedbb074c716b896.tar.gz func-2713a451f5c33bc17e2d79cfaedbb074c716b896.tar.xz func-2713a451f5c33bc17e2d79cfaedbb074c716b896.zip |
* Added close_fds=True to sub_process calls.
Diffstat (limited to 'func/minion/modules/virt.py')
-rw-r--r-- | func/minion/modules/virt.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/func/minion/modules/virt.py b/func/minion/modules/virt.py index 2c68ab4..634a100 100644 --- a/func/minion/modules/virt.py +++ b/func/minion/modules/virt.py @@ -44,7 +44,8 @@ class FuncLibvirtConnection(object): def __init__(self): - cmd = sub_process.Popen("uname -r", shell=True, stdout=sub_process.PIPE) + cmd = sub_process.Popen("uname -r", shell=True, stdout=sub_process.PIPE, + close_fds=True) output = cmd.communicate()[0] if output.find("xen") != -1: |