Files
test/tasks/main.yml
T
jmrothst c4e969b6c9 Ansible Core 2.20 fixes
Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
2026-05-04 21:15:56 -05:00

11 lines
247 B
YAML

---
# tasks file for ensure_hostname
- name: 'Set hostname if localhost'
when:
- ansible_facts["system"] == 'Linux'
- ansible_facts["fqdn"] == 'localhost.localdomain'
ansible.builtin.hostname:
name: '{{ inventory_hostname }}'
...