add long-running.yml

This commit is contained in:
Chris Hammer 2023-05-10 12:25:51 -04:00
parent 76c7c54fdb
commit 59d361a8cc

23
long-running.yml Normal file
View File

@ -0,0 +1,23 @@
- name: Perform some tests
hosts: all
become: false
gather_facts: false
tasks:
- name: Do a debug thing
debug:
msg: "Hello world!"
- name: Pause for 30 seconds
pause:
prompt : Triggering long running task
seconds : 30
- name: Do another debug thing
debug:
msg: "Goodbye!"