concron/tasks.yaml
2019-03-29 01:40:08 +03:00

20 lines
409 B
YAML

shell: "/bin/sh"
tasks:
- name: sleep
crontab: "*/5 * * * * *"
dir: "/tmp"
useShell: true
cmd: "sleep"
args: ["11"]
concurrencyPolicy: Forbid
- name: hello_world
crontab: "*/10 * * * * *"
dir: "/tmp"
useShell: false
cmd: "/bin/echo"
args: ["HELLO WORLD"]
- name: show_env
crontab: "*/15 * * * * *"
useShell: true
cmd: "env"
useSystemEnv: false