-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.yml
More file actions
33 lines (33 loc) · 770 Bytes
/
main.yml
File metadata and controls
33 lines (33 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
- hosts: localhost
vars_files:
- local.config.yml
roles:
- role: roles/macos
tags: [macos]
when: ansible_os_family == 'Darwin'
- role: roles/debian
tags: [debian]
when: ansible_os_family == 'Debian'
- role: roles/ssh
tags: [ssh]
- role: roles/dotfiles
tags: [dotfiles]
- role: roles/enpass-cli
tags: [packages]
- role: roles/offlineimap
tags: [offlineimap, services, never]
when: ansible_os_family == 'Debian'
- role: roles/rust
tags: [packages]
- role: roles/fly
tags: [packages]
- role: roles/helm-diff
tags: [packages]
- role: roles/multiarch-container-builds
tags: [packages]
tasks:
- name: Dump hostvars
tags: [never, dump]
debug:
var: hostvars[inventory_hostname]