c12s-kubespray/roles/bootstrap-os/tasks/bootstrap-debian.yml

66 lines
1.7 KiB
YAML
Raw Normal View History

2017-10-03 07:30:45 +00:00
---
- name: Check if bootstrap is needed
2017-10-03 07:30:45 +00:00
raw: which "{{ item }}"
register: need_bootstrap
failed_when: false
changed_when: false
# This command should always run, even in check mode
check_mode: false
2017-10-03 07:30:45 +00:00
with_items:
- python
- pip
- dbus-daemon
environment: {}
2017-10-03 07:30:45 +00:00
tags: facts
- 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
- 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
- name: Install python, pip, and dbus
2017-10-03 07:30:45 +00:00
raw:
apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal python-pip dbus
become: true
environment: {}
2017-10-03 07:30:45 +00:00
when:
need_bootstrap.results | map(attribute='rc') | sort | last | bool
2017-10-03 07:30:45 +00:00
- set_fact:
ansible_python_interpreter: "/usr/bin/python"
tags: facts