quick fixes

This commit is contained in:
willtome
2023-03-13 11:59:15 -04:00
parent 2fb2da2af4
commit ffcedd7ec6
3 changed files with 6 additions and 2 deletions

View File

@@ -37,6 +37,8 @@
- { name: "GroupA" }
- { name: "GroupB" }
- { name: "GroupC" }
retries: 5
delay: 10
- name: Create some users
community.windows.win_domain_user:
@@ -48,3 +50,5 @@
- { name: "UserA", groups: "GroupA" }
- { name: "UserB", groups: "GroupB" }
- { name: "UserC", groups: "GroupC" }
retries: 5
delay: 10

View File

@@ -1,6 +1,6 @@
---
- name: Run PowerShell
hosts: "{{ HOSTS | default('windows') }}"
hosts: "{{ _hosts | default('os_windows') }}"
gather_facts: false
vars:
ps_script: undef

View File

@@ -10,7 +10,7 @@
- name: Install specific versions of packages sequentially
chocolatey.chocolatey.win_chocolatey:
name: "{{ item.name }}"
state: installed
state: present
loop: "{{ choco_packages }}"
- name: Check python version