summaryrefslogtreecommitdiffstats
path: root/roles/hostname/tasks/main.yml
blob: 5b502ec02253346c59ade9e2ef0e2f848fc757fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
- name: "Configure /etc/hostname"
  become: true
  ansible.builtin.copy:
    dest: "/etc/hostname"
    mode: "0644"
    content: |
      {{ hostname }}
  when: hostname is defined

- name: "Configure /etc/hosts"
  become: true
  ansible.builtin.copy:
    dest: "/etc/hosts"
    mode: "0644"
    content: |
      127.0.0.1   localhost
      127.0.1.1   {{ hostname }}
  when: hostname is defined