summaryrefslogtreecommitdiffstats
path: root/roles/network/tasks
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-08-11 00:32:08 +0200
committerAhmed Abdelhalim <[email protected]>2025-08-11 00:32:08 +0200
commit4a0b46929b130bd539c052db359b351716bf9dd3 (patch)
treecbca6923b72fd01a83621d283912d4116cd57b25 /roles/network/tasks
parent077c7721695f01f3daf9d8b702a2f819067e0d07 (diff)
Refactor: move hostname into its own role
Diffstat (limited to 'roles/network/tasks')
-rw-r--r--roles/network/tasks/main.yml23
1 files changed, 0 insertions, 23 deletions
diff --git a/roles/network/tasks/main.yml b/roles/network/tasks/main.yml
index 2bebaf22..c45cb6da 100644
--- a/roles/network/tasks/main.yml
+++ b/roles/network/tasks/main.yml
@@ -5,29 +5,6 @@
- name: "Include OS-specific tasks"
ansible.builtin.include_tasks: "install-{{ ansible_os_family | lower }}.yml"
-- 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 }}
- ::1 localhost ip6-localhost ip6-loopback
- ff02::1 ip6-allnodes
- ff02::2 ip6-allrouters
- when: hostname is defined
- # Not required for boot
-
- name: "(chroot): Ensure network_services are enabled"
ansible.builtin.command:
cmd: "systemctl enable {{ item }}"