Skip to content

Commit

Permalink
feat(playbooks): add playbook to wait (useful for tdp-lib)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpignolet committed Aug 11, 2023
1 parent 551dd65 commit f5bd4e5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions playbooks/wait_sleep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright 2022 TOSIT.IO
# SPDX-License-Identifier: Apache-2.0

---
- name: Wait sleep
hosts: localhost
gather_facts: false
become: false
tasks:
- name: Wait {{ wait_sleep_seconds | default(1) }} seconds
ansible.builtin.pause:
seconds: "{{ wait_sleep_seconds | default(1) }}"

0 comments on commit f5bd4e5

Please sign in to comment.