-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.yml
More file actions
33 lines (28 loc) · 681 Bytes
/
base.yml
File metadata and controls
33 lines (28 loc) · 681 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_prompt:
- name: "ansible_become_pass"
prompt: "Sudo password"
private: yes
tasks:
- import_tasks: tasks/base-silverblue.yml
when:
- ansible_facts['distribution'] == "Fedora"
tags:
- base
- import_tasks: tasks/base-ubuntu.yml
when:
- ansible_facts['distribution'] == "Ubuntu"
tags:
- base
- import_tasks: tasks/after-base.yml
tags:
- after-base
- import_tasks: tasks/pip.yml
tags:
- pip
- import_tasks: tasks/workstation.yml
tags:
- workstation
- import_tasks: tasks/dotfiles.yml
tags:
- dotfiles