-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
66 lines (61 loc) · 1.23 KB
/
config.yaml
File metadata and controls
66 lines (61 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
programs:
empty:
cmd: "ls -l"
autorestart: False
exitcodes: 0
fail:
cmd: "/bin/ls -R /Application"
umask: 022
workingdir: "/tmp"
autostart: True
startretries: 3
stderr: "/tmp/taskFAIL.stderr"
cat:
cmd: "/bin/cat"
numprocs: 5
umask: 077
workingdir: "/tmp"
autostart: false
autorestart: True
exitcodes:
- 0
- 2
- 15
startretries: 4
starttime: 4
stopsignal: "TERM"
stoptime: 5
stdout: "/tmp/taskcat.stdout"
stderr: "/tmp/taskcat.stderr"
env:
HOME: "/HOME"
ls:
cmd: "ls -R /"
numprocs: 3
umask: 022
workingdir: "/tmp"
autostart: False
autorestart: "unexpected"
exitcodes:
- 0
- 2
startretries: 3
starttime: 1
stopsignal: "TERM"
stoptime: 10
stdout: "/tmp/taskls.stdout"
stderr: "/tmp/taskls.stderr"
wc:
cmd: "/usr/bin/wc"
numprocs: 1
umask: 022
autostart: false
autorestart: true
exitcodes:
- 0
- 15
startretries: 3
stopsignal: "TERM"
starttime: 1
stoptime: 10
stdout: "/tmp/taskwc.stdout"