1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-22 13:33:56 +03:00
systemd-stable/test/test-execute/exec-read-only-path-succeed.service

9 lines
376 B
SYSTEMD
Raw Normal View History

[Service]
Type=oneshot
# This should work, as we explicitly disable the effect of ReadOnlyPaths=
2017-10-12 07:26:39 +03:00
ExecStart=+/bin/sh -c 'touch /tmp/thisisasimpletest'
# This should also work, as we do not disable the effect of ReadOnlyPaths= but invert the exit code
2017-10-12 07:26:39 +03:00
ExecStart=/bin/sh -x -c '! touch /tmp/thisisasimpletest'
ExecStart=+/bin/sh -c 'rm /tmp/thisisasimpletest'
ReadOnlyPaths=/tmp