mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
test: add tests for merging RestrictNamespaces=
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
[Unit]
|
||||
Description=Test merging RestrictNamespaces= with all flags
|
||||
|
||||
[Service]
|
||||
RestrictNamespaces=mnt pid cgroup net uts ipc user
|
||||
RestrictNamespaces=net
|
||||
ExecStart=unshare -m -u -i -n -p -f
|
||||
Type=oneshot
|
||||
@@ -0,0 +1,9 @@
|
||||
[Unit]
|
||||
Description=Test merging RestrictNamespaces= with AND
|
||||
|
||||
[Service]
|
||||
RestrictNamespaces=mnt pid
|
||||
RestrictNamespaces=~mnt usr
|
||||
ExecStart=unshare -p -f
|
||||
ExecStart=sh -c '! unshare -m -u -i -n'
|
||||
Type=oneshot
|
||||
@@ -0,0 +1,9 @@
|
||||
[Unit]
|
||||
Description=Test merging RestrictNamespaces= with OR
|
||||
|
||||
[Service]
|
||||
RestrictNamespaces=mnt pid
|
||||
RestrictNamespaces=mnt uts
|
||||
ExecStart=unshare -m -u -p -f
|
||||
ExecStart=sh -c '! unshare -u -i -n'
|
||||
Type=oneshot
|
||||
Reference in New Issue
Block a user