- Learning Ansible 2.7(Third Edition)
- Fabio Alessandro Locati
- 52字
- 2021-06-24 15:08:44
Changing the hostname
To keep things simple, I find it useful to set the hostname of a machine to something meaningful. To do so, we can use a very simple Ansible module called hostname:
- name: Ensure the hostname is the same of the inventory hostname: name: "{{ inventory_hostname }}" become: True