9 lines
154 B
YAML
9 lines
154 B
YAML
---
|
|
- name: Shutdown Windows Servers
|
|
hosts: windows
|
|
become: yes
|
|
gather_facts: no # Disable gathering facts
|
|
|
|
roles:
|
|
- { role: shutdown-role }
|