-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.yml
executable file
·59 lines (42 loc) · 1.45 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
50
51
52
53
54
55
56
57
58
---
- hosts: localhost
pre_tasks:
# - name: update repositories
# apt: update_cache=yes
tasks:
- name: intial setup
include: tasks/base-files.yml
- name: install sublimetext
include: tasks/sublimetext.yml
- name: install google chrome
include: tasks/chrome.yml
- name: install anaconda
include: tasks/anaconda.yml
- name: install many apt pkgs
include: tasks/apt-packages.yml
- name: install Open CV dependencies
include: tasks/open-CV-dependencies.yml
## NOT IN USE
# # - name: build chez-scheme
# # include: tasks/build-chez-scheme.yml
# - name: install py-packages ## disabled 8/16/2021
# include: tasks/py-packages.yml ### disabling this fixed the problem, but we still need to install the py packages somehow
# - name: install BlueJ
# include: tasks/deb-bluej.yml
- name: install Atom
include: tasks/atom-snap.yml
- name: install eclipse
include: tasks/eclipse-snap.yml
- name: add cs guest user
include: tasks/users.yml
- name: setup cron jobs
include: tasks/crontab.yml
## NOT IN USE
# - name: set dock favorites
# include: tasks/dconf.yml
post_tasks:
- name: set hostname
shell: /scripts/hostname-bkgd.sh
## once per computer (or after re-imaging)
# - name: prey setup
# include: tasks/prey.yml