1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Run pip command from the system's temp directory

This commit is contained in:
David Hughes 2013-03-15 15:05:21 -07:00
parent fc8d9377d5
commit dd79d66dba

View file

@ -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