-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.yml
41 lines (33 loc) · 910 Bytes
/
local.yml
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
34
35
36
37
38
39
40
41
---
- hosts: localhost
connection: local
become: true
vars_files:
- vars/vars.yml
pre_tasks:
- name: Update repositories
ansible.builtin.apt:
name: "*"
state: latest
upgrade: "yes"
update_cache: true
changed_when: false
tasks:
- name: Include Packages
ansible.builtin.include_tasks: tasks/packages.yml
tags: packages
- name: Include Wallpaper
ansible.builtin.include_tasks: tasks/wallpaper.yml
tags: wallpaper
- name: Set up Environment
ansible.builtin.include_tasks: tasks/environment.yml
tags: env
- name: Set up dot files
ansible.builtin.include_tasks: tasks/dotfiles.yml
tags: dotfiles
- name: Set up user
ansible.builtin.include_tasks: tasks/user.yml
tags: user
- name: Set up cron
ansible.builtin.include_tasks: tasks/cron.yml
tags: cron