76db060afb
* Add README to bootstrap-os role * Rework bootstrap-os once more * Document workarounds for bugs/deficiencies in Ansible modules * Unify and document role variables * Remove installation of additional packages and repositories * Merge Ubuntu and Debian tasks * Remove pipelining setting from default playbooks * Fix OpenSUSE not running its required tasks
37 lines
728 B
YAML
37 lines
728 B
YAML
---
|
|
# CoreOS ships without Python installed
|
|
|
|
- name: Check if bootstrap is needed
|
|
raw: stat /opt/bin/.bootstrapped
|
|
register: need_bootstrap
|
|
environment: {}
|
|
failed_when: false
|
|
changed_when: false
|
|
tags:
|
|
- facts
|
|
|
|
- name: Force binaries directory for Container Linux by CoreOS
|
|
set_fact:
|
|
bin_dir: "/opt/bin"
|
|
tags:
|
|
- facts
|
|
|
|
- name: Run bootstrap.sh
|
|
script: bootstrap.sh
|
|
become: true
|
|
when:
|
|
- need_bootstrap.rc != 0
|
|
|
|
- name: Set the ansible_python_interpreter fact
|
|
set_fact:
|
|
ansible_python_interpreter: "{{ bin_dir }}/python"
|
|
tags:
|
|
- facts
|
|
|
|
- name: Disable auto-upgrade
|
|
systemd:
|
|
name: locksmithd.service
|
|
masked: true
|
|
state: stopped
|
|
when:
|
|
- coreos_locksmithd_disable
|