refactor ♻️: Refactoring the tasks directory to improve code organization and readability.

The tasks directory has been refactored to separate different roles into their own directories, making it easier to manage and understand the project structure. This change adheres to the guidelines for maintaining clean and organized codebases.
This commit is contained in:
2025-10-09 21:12:04 +02:00
parent 46f5852d0c
commit 181f2f9a1b
7 changed files with 7 additions and 270 deletions

6
tasks/hostname.yml Normal file
View File

@@ -0,0 +1,6 @@
- hosts: localhost
gather_facts: yes
tasks:
- name: Show the local hostname
ansible.builtin.debug:
msg: "The hostname of this machine is {{ ansible_hostname }}"