blob: 5cc75ca2a1431f363778828871368e2b93cd2d54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[[Systemd]]
[Upstream documentation](https://www.freedesktop.org/software/systemd/man/latest/systemd.exec.html#Logging%20and%20Standard%20Input/Output)
`StandardOutput=`
`DefaultStandardError=inherit`
`StandardError=DefaultStandardError`
`StandardInput=`
`StandardInputText=`
`StandardInputData=`
##### Outputs
- `inherit`
- `null`
- `tty`
- `journal`
- `kmsg`
- `journal+console`
- `kmsg+console`
- `file:path` (overwrites file)
- `append:path`
- `truncate:path`
- `socket`
- `fd:name`
|