Added set culture

This commit is contained in:
2016-11-15 00:01:06 +13:00
parent a5571a040e
commit 986e5b98ac

View File

@@ -1,4 +1,8 @@
---
- name: Set Timezone
win_timezone:
timezone: "New Zealand Standard Time"
- name: Ensure Administrator password
win_user:
name: administrator
@@ -8,15 +12,15 @@
update_password: always
changed_when: false
- name: Ensure System Culture Set
win_locale:
culture: en-NZ
- name: Ensure DNS is set
win_dns:
dns1: "{{ dns_servers[0] }}"
dns2: "{{ dns_servers[1] }}"
- name: Ensure System Culture Set
win_locale:
culture: en-NZ
- name: Ensure domain is joined
win_ad_domain:
admin_user: "{{ ad_admin_username }}"
@@ -25,14 +29,3 @@
when: ad_domain_joined
notify: reboot windows
- meta: flush_handlers
- name: Install common packages
win_chocolatey:
name: "{{ item }}"
state: present
with_items:
- notepadplusplus.install
- tailblazer
- 7zip
- winscp
- firefoxesr