library/roles/deb-set-hostname/tasks/main.yml: Add a new tag.
This commit is contained in:
parent
0a181fe411
commit
762b8de65f
|
@ -2,9 +2,9 @@
|
|||
- name: Set the hostname
|
||||
hostname: name={{ hostname }}
|
||||
when: hostname is defined
|
||||
tags: bootstrap
|
||||
tags: [ 'bootstrap', 'set_hostname' ]
|
||||
|
||||
- name: Add the hostname to /etc/hosts
|
||||
shell: grep -v {{ ansible_default_ipv4.address }} /etc/hosts > /etc/hosts.tmp ; echo "{{ ansible_default_ipv4.address }} {{ hostname }} {{ ansible_hostname }}" >> /etc/hosts.tmp ; /bin/mv /etc/hosts.tmp /etc/hosts
|
||||
when: hostname is defined
|
||||
tags: bootstrap
|
||||
tags: [ 'bootstrap', 'set_hostname' ]
|
||||
|
|
Loading…
Reference in New Issue