Commit dd79d66d by David Hughes

Run pip command from the system's temp directory

parent fc8d9377
......@@ -19,6 +19,8 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
import tempfile
DOCUMENTATION = '''
---
module: pip
......@@ -217,6 +219,7 @@ def main():
if module.check_mode:
module.exit_json(changed=True)
os.chdir(tempfile.gettempdir())
rc, out_pip, err_pip = module.run_command(cmd)
out += out_pip
err += err_pip
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment