hwdb: fix screen rotation for EXO Wings 2in1 w1125 (#36283)
[systemd.io.git] / test / test-execute / exec-protectkernelmodules-yes-mount-propagation.service
blob16399bd2061800597338780db911c8c173f6c8d4
1 # SPDX-License-Identifier: LGPL-2.1-or-later
2 [Unit]
3 Description=Test to make sure that passing ProtectKernelModules=yes disconnect mount propagation
5 [Service]
6 ProtectKernelModules=yes
7 ExecStart=sh -x -c 'd=$$(mktemp -d -p /tmp); trap "umount \'$$d\' && rmdir \'$$d\'" EXIT; mount -t tmpfs tmpfs "$$d"; grep "$$d" /proc/self/mountinfo && ! grep "$$d" /proc/$${PPID}/mountinfo && ! grep "$$d" /proc/1/mountinfo'
8 Type=oneshot