First working version

This commit is contained in:
jar3b
2019-03-28 18:02:02 +03:00
parent ce01279e08
commit eb4942729f
8 changed files with 418 additions and 0 deletions

19
tasks.yaml Normal file
View File

@@ -0,0 +1,19 @@
shell: "/bin/sh"
tasks:
- name: reservation
crontab: "*/5 * * * * *"
dir: "/tmp"
useShell: true
cmd: "sleep"
args: ["60"]
concurrencyPolicy: Replace
- name: test
crontab: "*/10 * * * * *"
dir: "/tmp"
useShell: false
cmd: "/bin/echo"
args: ["HELLO WORLD"]
- name: show_env
crontab: "*/15 * * * * *"
useShell: true
cmd: "env"