ansible-runner/test/data/sleep/project/sleep.yml
2021-03-03 11:36:53 +08:00

12 lines
260 B
YAML

---
- name: Sleep playbook for testing things while process is running
hosts: localhost
gather_facts: false
connection: local
vars:
sleep_interval: 30
tasks:
- name: sleep for a specified interval
command: 'sleep {{ sleep_interval }}'