Merge pull request #164 from oneswig/master

Provide a non-default hostname for CoreOS systems.
This commit is contained in:
Smaine Kahlouch 2016-04-12 17:18:33 +02:00
commit 5691086ba2

View file

@ -38,3 +38,11 @@
pip:
name: "{{ item }}"
with_items: pip_python_modules
- name: Check configured hostname
shell: hostname
register: configured_hostname
- name: Assign inventory name to unconfigured hostnames
shell: sh -c "echo \"{{inventory_hostname}}\" > /etc/hostname; hostname \"{{inventory_hostname}}\""
when: configured_hostname.stdout == 'localhost'