13 lines
217 B
YAML
13 lines
217 B
YAML
---
|
|
- name: Copy /etc/hosts
|
|
template:
|
|
src: ../templates/etc_hosts
|
|
dest: /etc/hosts
|
|
owner: root
|
|
group: root
|
|
mode: '0664'
|
|
|
|
|
|
- name: Set a hostname
|
|
ansible.builtin.hostname:
|
|
name: "{{ host }}" |