We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a7925 commit ae4d156Copy full SHA for ae4d156
readme.md
@@ -1,4 +1,30 @@
1
-# bonus
+# program management like supervisor
2
+example configuration file:
3
+```toml
4
+loglevel = "trace"
5
+
6
+[[program]]
7
+name = "short"
8
+command = "date"
9
+processes = 1
10
+start_policy = "auto"
11
+valid_exit_codes = [0]
12
+stdout = "./test.log"
13
+stdout_truncate = false
14
15
16
+name = "long"
17
+command = "sleep"
18
+args = ["15"]
19
20
21
+name = "never ending"
22
+command = "yes"
23
+```
24
25
+
26
27
+# school bonus
28
29
- Launch a program as another user
30
- Advanced logging (stdout, file, journald)
0 commit comments