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.
6 lines
182 B
YAML
6 lines
182 B
YAML
- hosts: localhost
|
|
gather_facts: yes
|
|
tasks:
|
|
- name: Show the local hostname
|
|
ansible.builtin.debug:
|
|
msg: "The hostname of this machine is {{ ansible_hostname }}" |