diff --git a/long-running.yml b/long-running.yml new file mode 100644 index 0000000..e853c09 --- /dev/null +++ b/long-running.yml @@ -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!" + +