15 lines
312 B
YAML
15 lines
312 B
YAML
|
---
|
||
|
- name: Set a hostname
|
||
|
ansible.builtin.hostname:
|
||
|
name: "{{ host.hostname }}"
|
||
|
become: true
|
||
|
|
||
|
- name: Update /etc/hosts to reflect the new hostname
|
||
|
lineinfile:
|
||
|
path: /etc/hosts
|
||
|
regexp: '^127\.0\.1\.1'
|
||
|
line: "127.0.1.1 {{ host.hostname }}"
|
||
|
state: present
|
||
|
backup: yes
|
||
|
become: true
|