mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
20 lines
439 B
YAML
20 lines
439 B
YAML
---
|
|
- hosts: all
|
|
become: true
|
|
|
|
roles:
|
|
- dotfiles_common
|
|
|
|
- hosts: void
|
|
become: true
|
|
pre_tasks:
|
|
- name: Load local vault variables when available
|
|
ansible.builtin.include_vars:
|
|
file: "{{ playbook_dir }}/../secrets/vault.yml"
|
|
when: lookup('ansible.builtin.fileglob', playbook_dir + '/../secrets/vault.yml', errors='ignore') != ''
|
|
|
|
roles:
|
|
- packages_void
|
|
- services_runit
|
|
- profile_desktop_i3
|