hwdb: fix screen rotation for EXO Wings 2in1 w1125 (#36283)
[systemd.io.git] / test / test-execute / exec-readonlypaths.service
bloba0eff8bcecc897ff24a6a0f021540c820ff7df48
1 # SPDX-License-Identifier: LGPL-2.1-or-later
2 [Unit]
3 Description=Test for ReadOnlyPaths=
5 [Service]
6 ReadOnlyPaths=/usr /etc /sys /dev -/i-dont-exist
7 PrivateDevices=yes
8 ExecStart=sh -x -c 'test ! -w /usr && test ! -w /etc && test ! -w /sys && test ! -w /sys/fs/cgroup'
9 ExecStart=sh -x -c 'test ! -w /dev && test ! -w /dev/shm && test ! -e /i-dont-exist && test -w /var'
10 Type=oneshot