diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-12-09 19:19:05 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-03-28 11:46:47 +0100 |
commit | 9901a6ad2e18420d65c8b3628f605b2ef8b86ac7 (patch) | |
tree | 15a968c52ed581273ad563e46fb0be797dce531e /test/testsuite-04.units | |
parent | test: move TEST-03-JOBS setup to static files (diff) | |
download | systemd-9901a6ad2e18420d65c8b3628f605b2ef8b86ac7.tar.xz systemd-9901a6ad2e18420d65c8b3628f605b2ef8b86ac7.zip |
test: convert TEST-04-JOURNAL to generic image
Diffstat (limited to 'test/testsuite-04.units')
-rw-r--r-- | test/testsuite-04.units/forever-print-hola.service | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/testsuite-04.units/forever-print-hola.service b/test/testsuite-04.units/forever-print-hola.service new file mode 100644 index 0000000000..a0dc095688 --- /dev/null +++ b/test/testsuite-04.units/forever-print-hola.service @@ -0,0 +1,6 @@ +[Unit] +Description=ForeverPrintHola service + +[Service] +Type=simple +ExecStart=sh -x -c 'while :; do printf "Hola\n" || touch /i-lose-my-logs; sleep 1; done' |