]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/test-execute/exec-readonlypaths-with-bindpaths.service
tests: introduce dummy_server_init and use it in all journald fuzzers
[thirdparty/systemd.git] / test / test-execute / exec-readonlypaths-with-bindpaths.service
1 [Unit]
2 Description=Test for ReadOnlyPaths=
3
4 [Service]
5 ReadOnlyPaths=/etc -/i-dont-exist /usr
6 # From 6c47cd7d3bf35c8158a0737f34fe2c5dc95e72d6, RuntimeDirectory= implies BindPaths=.
7 RuntimeDirectory=foo
8 ExecStart=/bin/sh -x -c 'test ! -w /etc && test ! -w /usr && test ! -e /i-dont-exist && test -w /var'
9 Type=oneshot