k8s-clusters/ansible/provision.yml

14 lines
302 B
YAML
Raw Normal View History

2022-02-01 17:05:06 -06:00
- name: provision Arch Linux hosts
hosts: all
2022-02-03 14:05:56 -06:00
gather_facts: yes
2022-02-01 17:05:06 -06:00
roles:
- role: './arch-linux'
tasks:
- name: print all available facts
ansible.builtin.debug:
var: ansible_facts
- name: print os family
ansible.builtin.debug:
var: ansible_facts.os_family