]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/test-execute/exec-readonlypaths-mount-propagation.service
tests: add spdx license header to test unit/link/network/conf files
[thirdparty/systemd.git] / test / test-execute / exec-readonlypaths-mount-propagation.service
1 # SPDX-License-Identifier: LGPL-2.1-or-later
2 [Unit]
3 Description=Test to make sure that passing ReadOnlyPaths= disconnect mount propagation
4
5 [Service]
6 ReadOnlyPaths=-/i-dont-exist
7 ExecStart=/bin/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