From 6e3a0d71572038876639937d7d287e9b0e81e84e Mon Sep 17 00:00:00 2001 From: kurokobo <2920259+kurokobo@users.noreply.github.com> Date: Mon, 15 Aug 2022 13:53:38 +0900 Subject: [PATCH] fix: change the value for the pause task to variable --- runner/project/demo.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runner/project/demo.yml b/runner/project/demo.yml index 3268a42..2e95257 100644 --- a/runner/project/demo.yml +++ b/runner/project/demo.yml @@ -33,6 +33,6 @@ loop_control: label: "{{ item.cmd }}" - # - name: Simply pause for a while - # ansible.builtin.pause: - # minutes: 10 + - name: Simply pause for a while + ansible.builtin.pause: + minutes: "{{ wait_minutes | default(0) }}"