forked from crombeen/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovision.yml
64 lines (59 loc) · 1.41 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
# Copyright 2017, Dag Wieers <[email protected]>
# 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: '{{ item }}'
state: present
execution_timeout: 0
with_items:
- 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
tags: software
ignore_errors: yes
- name: Install Google Drive File Stream
win_chocolatey:
name: google-drive-file-stream
state: present
execution_timeout: 0
ignore_checksums: 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