Fix OpenSuse set hostname

This commit is contained in:
rongzhang 2018-11-17 20:41:07 +08:00
parent af5e05d08d
commit 0e2d3fb923

View file

@ -58,15 +58,14 @@
name: "{{inventory_hostname}}"
when:
- override_system_hostname
- ansible_distribution not in ['openSUSE Tumbleweed']
- ansible_os_family not in ['CoreOS', 'Container Linux by CoreOS']
- ansible_os_family not in ['Suse', 'CoreOS', 'Container Linux by CoreOS']
- name: Assign inventory name to unconfigured hostnames (CoreOS and Tumbleweed only)
command: "hostnamectl set-hostname {{inventory_hostname}}"
register: hostname_changed
when:
- ansible_distribution in ['openSUSE Tumbleweed'] or ansible_os_family in ['CoreOS', 'Container Linux by CoreOS']
- override_system_hostname
- ansible_os_family in ['Suse', 'CoreOS', 'Container Linux by CoreOS']
- name: Update hostname fact (CoreOS and Tumbleweed only)
setup: