-
Notifications
You must be signed in to change notification settings - Fork 97
/
provision.yml
76 lines (70 loc) · 1.73 KB
/
provision.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Copyright 2017, Dag Wieers <dag@wieers.com>
# This playbook installs the initial software collection. It is intended to
# be used on newly installed systems. Or whenever this playbook changes.
- hosts: computers
# strategy: free
tasks:
# NOTE: Installation of Chocolatey is taken care of win_chocolatey
- name: Install chocolatey/powershell on new systems
win_chocolatey:
name: powershell
state: present
execution_timeout: 0
tags: powershell
- name: Install extra software
win_chocolatey:
name:
- 7zip
- audacity
# - cdex
- chocolateygui
- firefox
- gimp
- googlechrome
# - googleearth
- infrarecorder
- inkscape
- keepass.install
- libreoffice-oldstable
- notepadplusplus
# - rdpwrapper
- sysinternals
- tigervnc
- tipp10
- vlc
- windirstat
- adblockplus-firefox
- adblockplusie
- adblockpluschrome
state: present
execution_timeout: 0
tags: software
ignore_errors: yes
# NOTE: Google Drive File Stream should not be installed using Chocolatey
# It updates itself
- name: Remove Google Drive File Stream
win_chocolatey:
name: google-drive-file-stream
state: absent
execution_timeout: 0
ignore_checksums: yes
force: yes
ignore_errors: yes
tags: gdrive
# TODO: Remove dropbox from systems
- hosts: dropbox
tasks:
- name: Install dropbox
win_chocolatey:
name: dropbox
state: latest
execution_timeout: 0
tags: dropbox
- hosts: adobe
tasks:
- name: Install Adobe Acrobat Reader
win_chocolatey:
name: adobereader-update
state: latest
execution_timeout: 0
tags: acrobat