-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaybook.yml
More file actions
27 lines (27 loc) · 810 Bytes
/
playbook.yml
File metadata and controls
27 lines (27 loc) · 810 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
- hosts: localhost
vars:
user_home: /home/{{ user }}
gather_facts: no
handlers:
- name: restart ssh
service:
name: ssh
state: restarted
tasks:
- import_tasks: tasks/configure_lightweight.yaml
when: lightweight
- import_tasks: tasks/configure_env.yaml
- import_tasks: tasks/configure_clis.yaml
- import_tasks: tasks/configure_guis.yaml
when: desktop
- import_tasks: tasks/configure_python.yaml
- import_tasks: tasks/configure_gnome.yaml
when: desktop
- import_tasks: tasks/configure_private.yaml
when: private
- import_tasks: tasks/configure_work.yaml
when: work
- import_tasks: tasks/configure_games.yaml
when: games
- import_tasks: tasks/configure_remote_access.yaml
when: remote_access