remove os_family variable from bootstrap-os (#3962)
* remove os_family variable from bootstrap-os * quote the conditions another time to fix the syntax error
This commit is contained in:
parent
8216e821d3
commit
f72ed13f3c
2 changed files with 7 additions and 29 deletions
|
@ -1,7 +1,4 @@
|
||||||
---
|
---
|
||||||
bootstrap_os:
|
|
||||||
os_family: "{{bootstrap_os}}"
|
|
||||||
|
|
||||||
pip_python_coreos_modules:
|
pip_python_coreos_modules:
|
||||||
- httplib2
|
- httplib2
|
||||||
- six
|
- six
|
||||||
|
|
|
@ -5,45 +5,26 @@
|
||||||
changed_when: false
|
changed_when: false
|
||||||
environment: {}
|
environment: {}
|
||||||
|
|
||||||
- name: Set bootstrap_os
|
|
||||||
set_fact:
|
|
||||||
os_family: >-
|
|
||||||
{%- if 'Ubuntu' in os_release.stdout -%}
|
|
||||||
ubuntu
|
|
||||||
{%- elif 'Debian' in os_release.stdout -%}
|
|
||||||
debian
|
|
||||||
{%- elif 'CoreOS' in os_release.stdout -%}
|
|
||||||
coreos
|
|
||||||
{%- elif 'Fedora' in os_release.stdout -%}
|
|
||||||
fedora
|
|
||||||
{%- elif 'CentOS' in os_release.stdout -%}
|
|
||||||
centos
|
|
||||||
{%- elif 'OpenSUSE' in os_release.stdout -%}
|
|
||||||
opensuse
|
|
||||||
{%- elif 'Clear Linux OS' in os_release.stdout -%}
|
|
||||||
clearlinux
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
- include_tasks: bootstrap-ubuntu.yml
|
- include_tasks: bootstrap-ubuntu.yml
|
||||||
when: os_family == "ubuntu"
|
when: '"Ubuntu" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-debian.yml
|
- include_tasks: bootstrap-debian.yml
|
||||||
when: os_family == "debian"
|
when: '"Debian" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-coreos.yml
|
- include_tasks: bootstrap-coreos.yml
|
||||||
when: os_family == "coreos"
|
when: '"CoreOS" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-fedora.yml
|
- include_tasks: bootstrap-fedora.yml
|
||||||
when: os_family == "fedora"
|
when: '"Fedora" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-centos.yml
|
- include_tasks: bootstrap-centos.yml
|
||||||
when: os_family == "centos"
|
when: '"CentOS" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-opensuse.yml
|
- include_tasks: bootstrap-opensuse.yml
|
||||||
when: os_family == "opensuse"
|
when: '"OpenSUSE" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-clearlinux.yml
|
- include_tasks: bootstrap-clearlinux.yml
|
||||||
when: os_family == "clearlinux"
|
when: '"Clear Linux OS" in os_release.stdout'
|
||||||
|
|
||||||
- import_tasks: setup-pipelining.yml
|
- import_tasks: setup-pipelining.yml
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue