Files
homelab/glusterfs/ansible/setup_galery.yml

14 lines
238 B
YAML
Raw Normal View History

2026-03-14 20:43:35 +01:00
---
2026-03-14 21:52:37 +01:00
- hosts: test_server
2026-03-14 20:43:35 +01:00
gather_facts: true
become: false
tasks:
2026-03-14 21:52:37 +01:00
- name: Run hostname -a
command: hostname -a
register: hostname_out
2026-03-14 20:43:35 +01:00
2026-03-14 21:52:37 +01:00
- name: Show hostname output
debug:
var: hostname_out.stdout