29 lines
398 B
YAML
29 lines
398 B
YAML
---
|
|
version: 1
|
|
name: simple_test
|
|
created_at: '2021-04-14T20:54:47.557000'
|
|
load_plugins: ["sleep", "log"]
|
|
|
|
program:
|
|
- command: log
|
|
args:
|
|
level: INFO
|
|
message: This is a test program. Starting now...
|
|
|
|
- command: sleep
|
|
args:
|
|
secs: 1.2
|
|
|
|
- command: sleep
|
|
args:
|
|
secs: 20
|
|
|
|
- command: sleep
|
|
args:
|
|
secs: 5
|
|
|
|
- command: log
|
|
args:
|
|
level: INFO
|
|
message: End of test program!
|