9a76b8f9f0
The purpose of this is to be able to install a version of python that is not available on target node. It downloads source code from Python site, compiles it using default compiler and install it. It also installs and upgrade python packages (pip, setuptools, etc.) and install additional ones required by user via Pip Change-Id: I3212d6fc1872451942aaa82e613236351f8592a3
14 lines
237 B
YAML
14 lines
237 B
YAML
---
|
|
|
|
- hosts: all
|
|
tasks:
|
|
- name: Copy /etc/resolv.conf
|
|
become: yes
|
|
become_user: root
|
|
copy:
|
|
src: /etc/resolv.conf
|
|
dest: /etc/resolv.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|