13 lines
211 B
YAML
13 lines
211 B
YAML
- name: clean /etc/hostname
|
|
command:
|
|
rm -f /etc/hostname
|
|
become: true
|
|
|
|
- name: change hostname
|
|
lineinfile:
|
|
path: /etc/hostname
|
|
line: "{{ inventory_hostname }}"
|
|
create: true
|
|
become: true
|
|
|