mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
7 years ago
|
- name: Warn of impending deployment
|
||
|
win_say:
|
||
|
msg: Warning, deployment commencing in 5 minutes, please log out.
|
||
|
|
||
|
- name: Using a different voice and a start sound
|
||
|
win_say:
|
||
|
msg: Warning, deployment commencing in 5 minutes, please log out.
|
||
|
start_sound_path: C:\Windows\Media\ding.wav
|
||
|
voice: Microsoft Hazel Desktop
|
||
|
|
||
|
- name: Example with start and end sound
|
||
|
win_say:
|
||
|
msg: New software installed
|
||
|
start_sound_path: C:\Windows\Media\Windows Balloon.wav
|
||
|
end_sound_path: C:\Windows\Media\chimes.wav
|
||
|
|
||
|
- name: Create message file
|
||
|
win_copy:
|
||
|
content: Stay calm and carry on
|
||
|
dest: C:\Windows\Temp\win_say_message.txt
|
||
|
|
||
|
- name: Text from file example
|
||
|
win_say:
|
||
|
msg_file: C:\Windows\Temp\win_say_message.txt
|
||
|
start_sound_path: C:\Windows\Media\Windows Balloon.wav
|
||
|
end_sound_path: C:\Windows\Media\chimes.wav
|
||
|
|
||
|
- name: Remove message file
|
||
|
win_file:
|
||
|
path: C:\Windows\Temp\win_say_message.txt
|
||
|
state: absent
|
||
|
|
||
|
- name: Different spech peed
|
||
|
win_say:
|
||
|
speech_speed: 5
|
||
|
msg: Stay calm and proceed to the closest fire exit.
|