9 lines
191 B
YAML
9 lines
191 B
YAML
|
#!/usr/bin/env ansible-playbook
|
||
|
# vim:ft=ansible:
|
||
|
---
|
||
|
- hosts: localhost
|
||
|
tasks:
|
||
|
- name: debug home address
|
||
|
ansible.builtin.debug:
|
||
|
msg: "Record: {{ common_home_address }}"
|