mirror of
https://git.proxmox.com/git/systemd
synced 2025-06-13 01:16:12 +00:00
13 lines
455 B
Desktop File
13 lines
455 B
Desktop File
[Unit]
|
|
Description=Test for StandardOutput=truncate:
|
|
|
|
[Service]
|
|
ExecStartPre=sh -c 'printf "hello\n" > /tmp/test-exec-standardoutput-output'
|
|
ExecStartPre=sh -c 'printf "hi\n" > /tmp/test-exec-standardoutput-expected'
|
|
StandardInput=data
|
|
StandardInputText=hi
|
|
StandardOutput=truncate:/tmp/test-exec-standardoutput-output
|
|
StandardError=null
|
|
ExecStart=sh -c 'cat && cmp /tmp/test-exec-standardoutput-output /tmp/test-exec-standardoutput-expected'
|
|
Type=oneshot
|