2016-09-05 08:45:27 +00:00
|
|
|
---
|
2018-10-10 02:14:33 +00:00
|
|
|
- name: List ubuntu_packages
|
|
|
|
set_fact:
|
|
|
|
ubuntu_packages:
|
|
|
|
- python
|
|
|
|
- python-apt
|
|
|
|
- python-pip
|
|
|
|
- dbus
|
|
|
|
|
2019-02-11 22:04:27 +00:00
|
|
|
- name: Check if bootstrap is needed
|
|
|
|
raw: dpkg -l | cut -d' ' -f3 | grep -e ^{{ item }}$
|
2016-09-05 08:45:27 +00:00
|
|
|
register: need_bootstrap
|
2016-12-27 11:38:54 +00:00
|
|
|
failed_when: false
|
2017-11-06 13:51:07 +00:00
|
|
|
changed_when: false
|
2019-02-11 22:04:27 +00:00
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
|
|
|
with_items: "{{ ubuntu_packages }}"
|
2018-10-20 14:13:54 +00:00
|
|
|
environment: {}
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- facts
|
2016-09-05 08:45:27 +00:00
|
|
|
|
2019-02-11 22:04:27 +00:00
|
|
|
- name: Check http::proxy in /etc/apt/apt.conf
|
|
|
|
raw: grep -qsi 'Acquire::http::proxy' /etc/apt/apt.conf
|
|
|
|
register: need_http_proxy
|
|
|
|
failed_when: false
|
|
|
|
changed_when: false
|
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
|
|
|
environment: {}
|
|
|
|
when:
|
|
|
|
- http_proxy is defined
|
|
|
|
|
|
|
|
- name: Add http_proxy to /etc/apt/apt.conf if http_proxy is defined
|
|
|
|
raw: echo 'Acquire::http::proxy "{{ http_proxy }}";' >> /etc/apt/apt.conf
|
|
|
|
become: true
|
|
|
|
environment: {}
|
|
|
|
when:
|
|
|
|
- http_proxy is defined
|
|
|
|
- need_http_proxy.rc != 0
|
2018-12-10 10:33:45 +00:00
|
|
|
|
2019-02-11 22:04:27 +00:00
|
|
|
- name: Check https::proxy in /etc/apt/apt.conf
|
|
|
|
raw: grep -qsi 'Acquire::https::proxy' /etc/apt/apt.conf
|
|
|
|
register: need_https_proxy
|
|
|
|
failed_when: false
|
|
|
|
changed_when: false
|
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
|
|
|
environment: {}
|
|
|
|
when:
|
|
|
|
- https_proxy is defined
|
|
|
|
|
|
|
|
- name: Add https_proxy to /etc/apt/apt.conf if https_proxy is defined
|
|
|
|
raw: echo 'Acquire::https::proxy "{{ https_proxy }}";' >> /etc/apt/apt.conf
|
|
|
|
become: true
|
|
|
|
environment: {}
|
|
|
|
when:
|
|
|
|
- https_proxy is defined
|
|
|
|
- need_https_proxy.rc != 0
|
2018-12-10 10:33:45 +00:00
|
|
|
|
2019-02-11 22:04:27 +00:00
|
|
|
- name: Install python and pip
|
2017-02-13 14:30:30 +00:00
|
|
|
raw:
|
2017-02-13 14:30:30 +00:00
|
|
|
apt-get update && \
|
2019-02-11 22:04:27 +00:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y {{ ubuntu_packages | join(" ") }}
|
|
|
|
become: true
|
2018-10-20 14:13:54 +00:00
|
|
|
environment: {}
|
2017-02-13 14:30:30 +00:00
|
|
|
when:
|
2018-10-10 02:14:33 +00:00
|
|
|
- need_bootstrap.results | map(attribute='rc') | sort | last | bool
|
2016-09-05 08:45:27 +00:00
|
|
|
|
|
|
|
- set_fact:
|
2016-09-05 09:51:22 +00:00
|
|
|
ansible_python_interpreter: "/usr/bin/python"
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- facts
|