hwdb: fix screen rotation for EXO Wings 2in1 w1125 (#36283)
[systemd.io.git] / test / test-execute / exec-networknamespacepath-privatemounts-no.service
blob07c0525dcc611cb45a1fb1e1c27a5d88c6021899
1 # SPDX-License-Identifier: LGPL-2.1-or-later
2 [Unit]
3 Description=Test for NetworkNamespacePath= without mount namespacing
5 [Service]
6 ExecStart=sh -x -c '! ip link show dummy-test-exec'
7 ExecStart=sh -x -c 'test ! -e /proc/sys/net/ipv4/conf/dummy-test-exec'
8 # Without mount namespacing, we can access the dummy-test-exec interface through sysfs.
9 ExecStart=sh -x -c 'test -e /sys/class/net/dummy-test-exec'
10 ExecStart=sh -x -c 'ip link show dummy-test-ns'
11 ExecStart=sh -x -c 'test -e /proc/sys/net/ipv4/conf/dummy-test-ns'
12 # Without mount namespacing, we cannot access the dummy-test-ns interface through sysfs.
13 ExecStart=sh -x -c 'test ! -e /sys/class/net/dummy-test-ns'
14 Type=oneshot
15 NetworkNamespacePath=/run/netns/test-execute-netns
16 PrivateMounts=no