mirror of
https://github.com/guoyk93/minit.git
synced 2025-12-24 12:37:54 +08:00
32 lines
366 B
YAML
32 lines
366 B
YAML
name: echo
|
|
kind: once
|
|
command:
|
|
- echo
|
|
- once
|
|
- $HOME
|
|
---
|
|
name: shell-test
|
|
kind: daemon
|
|
count: 3
|
|
shell: /bin/bash
|
|
command:
|
|
- sleep 1 && echo hello world
|
|
---
|
|
name: sleep
|
|
kind: daemon
|
|
count: 3
|
|
command:
|
|
- sleep
|
|
- 5
|
|
---
|
|
name: echo-cron
|
|
kind: cron
|
|
cron: "@every 10s"
|
|
command:
|
|
- echo
|
|
- cron
|
|
---
|
|
name: render-test
|
|
kind: render
|
|
files:
|
|
- testdata/conf/*.conf |