From 59d361a8cc60021dd8612e6458a3b76e214653a7 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Wed, 10 May 2023 12:25:51 -0400 Subject: [PATCH] add long-running.yml --- long-running.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 long-running.yml 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!" + +