2016-09-05 16:45:27 +08:00
|
|
|
---
|
2018-10-10 10:14:33 +08:00
|
|
|
- name: List ubuntu_packages
|
|
|
|
set_fact:
|
|
|
|
ubuntu_packages:
|
|
|
|
- python
|
|
|
|
- python-apt
|
|
|
|
- python-pip
|
|
|
|
- dbus
|
|
|
|
|
2019-02-12 06:04:27 +08:00
|
|
|
- name: Check if bootstrap is needed
|
|
|
|
raw: dpkg -l | cut -d' ' -f3 | grep -e ^{{ item }}$
|
2016-09-05 16:45:27 +08:00
|
|
|
register: need_bootstrap
|
2016-12-27 19:38:54 +08:00
|
|
|
failed_when: false
|
2017-11-06 21:51:07 +08:00
|
|
|
changed_when: false
|
2019-02-12 06:04:27 +08:00
|
|
|
# This command should always run, even in check mode
|
|
|
|
check_mode: false
|
|
|
|
with_items: "{{ ubuntu_packages }}"
|
2018-10-20 22:13:54 +08:00
|
|
|
environment: {}
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- facts
|
2016-09-05 16:45:27 +08:00
|
|
|
|
2019-02-12 06:04:27 +08: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 18:33:45 +08:00
|
|
|
|
2019-02-12 06:04:27 +08: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 18:33:45 +08:00
|
|
|
|
2019-02-12 06:04:27 +08:00
|
|
|
- name: Install python and pip
|
2017-02-13 22:30:30 +08:00
|
|
|
raw:
|
2017-02-13 22:30:30 +08:00
|
|
|
apt-get update && \
|
2019-02-12 06:04:27 +08:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y {{ ubuntu_packages | join(" ") }}
|
|
|
|
become: true
|
2018-10-20 22:13:54 +08:00
|
|
|
environment: {}
|
2017-02-13 22:30:30 +08:00
|
|
|
when:
|
2018-10-10 10:14:33 +08:00
|
|
|
- need_bootstrap.results | map(attribute='rc') | sort | last | bool
|
2016-09-05 16:45:27 +08:00
|
|
|
|
|
|
|
- set_fact:
|
2016-09-05 17:51:22 +08:00
|
|
|
ansible_python_interpreter: "/usr/bin/python"
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- facts
|