mirror of
https://github.com/systemd/systemd.git
synced 2026-07-16 20:40:56 +00:00
If sh is not bash, some builtin command behave slightly differently. E.g. if sh is provided by busybox, its builtin test command does not check if the path is a mount point or not, and 'test -w' only checks the access mode of the inode. So, even if a readonly filesystem is mounted on a directory, the test command may succeed. To avoid such confusion, let's unconditionally use bash.
13 lines
456 B
Desktop File
13 lines
456 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Test for ReadOnlyPaths=
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
# This should work, as we explicitly disable the effect of ReadOnlyPaths=
|
|
ExecStart=+bash -c 'touch /tmp/thisisasimpletest'
|
|
# This should also work, as we do not disable the effect of ReadOnlyPaths= but invert the exit code
|
|
ExecStart=bash -x -c '! touch /tmp/thisisasimpletest'
|
|
ExecStart=+bash -c 'rm /tmp/thisisasimpletest'
|
|
ReadOnlyPaths=/tmp
|