mirror of
https://github.com/systemd/systemd.git
synced 2024-12-14 12:43:36 +08:00
c9a2563225
If an exotic network driver is loaded, there may exist an unexpected network interface.
13 lines
490 B
Desktop File
13 lines
490 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Test for PrivateNetwork= with mount namespacing
|
|
|
|
[Service]
|
|
ExecStart=/bin/sh -x -c '! ip link show dummy-test-exec'
|
|
ExecStart=/bin/sh -x -c 'test ! -e /proc/sys/net/ipv4/conf/dummy-test-exec'
|
|
# With mount namespacing, we cannot access the dummy-test-exec interface through sysfs.
|
|
ExecStart=/bin/sh -x -c 'test ! -e /sys/class/net/dummy-test-exec'
|
|
Type=oneshot
|
|
PrivateNetwork=yes
|
|
# PrivateNetwork=yes implies PrivateMounts=yes
|