-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.yml
More file actions
32 lines (32 loc) · 799 Bytes
/
all.yml
File metadata and controls
32 lines (32 loc) · 799 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
---
- name: Install dotfiles
hosts: local
gather_facts: true
pre_tasks:
- name: Load Darwin variables
ansible.builtin.include_vars:
file: group_vars/darwin.yml
when: ansible_facts['os_family'] == "Darwin"
tags: always
- name: Load Linux variables
ansible.builtin.include_vars:
file: group_vars/linux.yml
when: ansible_facts['os_family'] != "Darwin"
tags: always
roles:
- role: macos
when: ansible_facts['os_family'] == "Darwin"
tags: macos
- role: linux
when: ansible_facts['os_family'] != "Darwin"
tags: linux
- role: homebrew
tags: homebrew
- role: dotfiles
tags: dotfiles
- role: git
tags: git
- role: node
tags: node
- role: docker
tags: docker