forked from bketelsen/workstation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
local.yml
executable file
·49 lines (44 loc) · 1.57 KB
/
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
42
43
44
45
46
47
48
49
- hosts: localhost
become: true
vars:
myusername: dustin
myhome: /home/dustin
pre_tasks:
- name: Update Repositories
apt: update_cache=yes
changed_when: false
tasks:
# Ansible Settings
- include: tasks/ansible/sudoers.yml
# Software Settings
- include: tasks/software/repos.yml
- include: tasks/software/1810-repos.yml
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'cosmic'
- include: tasks/software/1804-repos.yml
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'bionic'
- include: tasks/software/apt.yml
- include: tasks/software/snap.yml
- include: tasks/software/pip.yml
- include: tasks/software/update-system.yml
# System Settings
- include: tasks/system/sysctl.yml
- include: tasks/system/nsswitch.yml
- include: tasks/system/services.yml
- include: tasks/system/timezone.yml
- include: tasks/system/ufw.yml
# User Settings
- include: tasks/user/groups.yml
- include: tasks/user/users.yml
- include: tasks/user/dotfiles.yml
- include: tasks/user/git-config.yml
- include: tasks/user/cron.yml
- include: tasks/user/shell.yml
- include: tasks/user/shortcuts.yml
- include: tasks/user/general-user-settings.yml
# - include: tasks/user/scripts.yml
- include: tasks/user/permissions.yml
# User Visual Settings
# Running defaults for now
- include: tasks/user/visual/theme.yml
# - include: tasks/user/visual/wallpaper.yml
- include: tasks/user/visual/desktop-icons.yml