2016-09-06 22:04:41 +08:00
|
|
|
---
|
2018-01-29 19:37:48 +08:00
|
|
|
- import_tasks: bootstrap-ubuntu.yml
|
2016-09-08 02:19:46 +08:00
|
|
|
when: bootstrap_os == "ubuntu"
|
|
|
|
|
2018-01-29 19:37:48 +08:00
|
|
|
- import_tasks: bootstrap-debian.yml
|
2017-10-03 15:30:45 +08:00
|
|
|
when: bootstrap_os == "debian"
|
|
|
|
|
2018-01-29 19:37:48 +08:00
|
|
|
- import_tasks: bootstrap-coreos.yml
|
2016-12-09 17:38:45 +08:00
|
|
|
when: bootstrap_os == "coreos"
|
|
|
|
|
2018-01-29 19:37:48 +08:00
|
|
|
- import_tasks: bootstrap-centos.yml
|
2016-12-08 00:16:06 +08:00
|
|
|
when: bootstrap_os == "centos"
|
|
|
|
|
2018-04-26 17:52:06 +08:00
|
|
|
- import_tasks: bootstrap-opensuse.yml
|
|
|
|
when: bootstrap_os == "opensuse"
|
|
|
|
|
2018-01-29 19:37:48 +08:00
|
|
|
- import_tasks: setup-pipelining.yml
|
2017-02-25 05:41:27 +08:00
|
|
|
|
|
|
|
- name: check if atomic host
|
|
|
|
stat:
|
|
|
|
path: /run/ostree-booted
|
|
|
|
register: ostree
|
|
|
|
|
|
|
|
- set_fact:
|
2017-03-27 18:27:15 +08:00
|
|
|
is_atomic: "{{ ostree.stat.exists }}"
|
|
|
|
|
|
|
|
- name: Gather nodes hostnames
|
|
|
|
setup:
|
|
|
|
gather_subset: '!all'
|
2017-09-06 20:10:52 +08:00
|
|
|
filter: ansible_*
|
2017-03-27 18:27:15 +08:00
|
|
|
|
2018-04-26 17:52:06 +08:00
|
|
|
- name: Assign inventory name to unconfigured hostnames (non-CoreOS and Tumbleweed)
|
2017-03-27 18:27:15 +08:00
|
|
|
hostname:
|
|
|
|
name: "{{inventory_hostname}}"
|
2018-04-26 17:52:06 +08:00
|
|
|
when:
|
|
|
|
- override_system_hostname
|
|
|
|
- ansible_distribution not in ['openSUSE Tumbleweed']
|
|
|
|
- ansible_os_family not in ['CoreOS', 'Container Linux by CoreOS']
|
2017-09-06 20:10:52 +08:00
|
|
|
|
2018-04-26 17:52:06 +08:00
|
|
|
- name: Assign inventory name to unconfigured hostnames (CoreOS and Tumbleweed only)
|
2017-09-06 20:10:52 +08:00
|
|
|
command: "hostnamectl set-hostname {{inventory_hostname}}"
|
|
|
|
register: hostname_changed
|
2018-04-26 17:52:06 +08:00
|
|
|
when:
|
|
|
|
- ansible_hostname == 'localhost'
|
|
|
|
- ansible_distribution in ['openSUSE Tumbleweed'] or ansible_os_family in ['CoreOS', 'Container Linux by CoreOS']
|
|
|
|
- override_system_hostname
|
2017-09-06 20:10:52 +08:00
|
|
|
|
2018-04-26 17:52:06 +08:00
|
|
|
- name: Update hostname fact (CoreOS and Tumbleweed only)
|
2017-09-06 20:10:52 +08:00
|
|
|
setup:
|
|
|
|
gather_subset: '!all'
|
|
|
|
filter: ansible_hostname
|
2018-04-26 17:52:06 +08:00
|
|
|
when:
|
|
|
|
- hostname_changed.changed
|