- ---
- - hosts: bootstrap
- gather_facts: false
- become: true
- vars:
- ansible_host_key_checking: false
- ansible_host_pattern_mismatch: ignore
- pre_tasks:
- - ansible.builtin.include_vars: ../vars/vault.yaml
- - ansible.builtin.include_vars: ../group_vars/kodi.yml
- roles:
- - kodi-config
- post_tasks:
- - ansible.builtin.reboot:
- reboot_command: /run/current-system/sw/bin/systemctl reboot
|