Files
homelab/glusterfs/ansible/setup_galery.yml
Benedikt Penner 8e82c266e7 split playbooks
2026-03-15 01:30:35 +01:00

13 lines
235 B
YAML

---
- hosts: test_server
gather_facts: true
become: false
tasks:
- name: Run hostname -a
command: hostname -a
register: hostname_out
- name: Show hostname output
debug:
var: hostname_out.stdout