-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.yaml
78 lines (57 loc) · 1.86 KB
/
install.yaml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
- name: Configure and Install Software
hosts: localhost
vars_files:
- vars/pkgs.yml
vars_prompt:
- name: ansible_user
prompt: What is your username?
private: false
tasks:
- import_tasks: ./tasks/add_use_to_group.yml
tags: [groups,sudoers, all]
- import_tasks: ./tasks/no_pass_sudoers.yml
tags: [sudoers, all]
- import_tasks: ./tasks/update_pacman.yml
tags: [pacman, all]
- import_tasks: ./tasks/configure_pacman.yml
tags: [pacman, all]
- import_tasks: ./tasks/install_pacman_packages.yml
tags: [install,pacman, all]
- import_tasks: ./tasks/install_git.yml
tags: [git, paru, all]
- import_tasks: ./tasks/install_paru.yml
tags: [git, paru, all]
- import_tasks: ./tasks/install_aur_packages.yml
tags: [install, aur, paru, all]
- import_tasks: ./tasks/configure_gpg.yml
tags: [gpg, all]
- import_tasks: ./tasks/enable_system_services.yml
tags: [services, all]
- import_tasks: ./tasks/enable_user_services.yml
tags: [services, all]
# - import_tasks: ./tasks/set_zsh_as_default_shell.yml
# tags: [shell, all]
- import_tasks: ./tasks/configure_crontab.yml
become: true
tags: [cron, all]
- import_tasks: ./tasks/reflector.yml
become: true
tags: [reflector, all]
- import_tasks: ./tasks/logrotate.yml
become: true
tags: [logrotate, all]
- import_tasks: ./tasks/editor.yml
become: true
tags: [editor, all]
- import_tasks: ./tasks/docker.yml
become: true
tags: [docker, all]
- import_tasks: ./tasks/default_apps.yml
tags: [apps, all]
- import_tasks: ./tasks/slides.yml
tags: [slides, all]
- import_tasks: ./tasks/set_timezone.yml
tags: [tz, all]
- import_tasks: ./tasks/install_gaming_packages.yml
tags: [gaming, all]