Added default packages

This commit is contained in:
2016-11-22 13:29:18 +13:00
parent e8dcb92459
commit cb81f178f8

View File

@@ -2,7 +2,7 @@
- name: Set Timezone
win_timezone:
timezone: "New Zealand Standard Time"
- name: Ensure Administrator password
win_user:
name: administrator
@@ -33,8 +33,13 @@
- name: Ensure Profile Tool Present
win_copy:
src: Defprof.exe
dest: "C:\\temp\\DefProf.exe"
- name: Set default user locale
win_command: "c:\\temp\\Defprof.exe Administrator"
changed_when: false
dest: 'C:\temp\Defprof.exe'
- name: Ensure user locale set
win_command: 'c:\temp\Defprof.exe Administrator /q'
changed_when: false
- name: Default applications installed
win_chocolatey:
name: "{{ item }}"
state: present
with_items: "{{ win_packages }}"