mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-27 20:25:19 +00:00
The mountpoints.c test creates such mount and criu will try to kerndat-check one, so this fs should be on "host". Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
8 lines
147 B
Bash
Executable file
8 lines
147 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
mount --make-rprivate /
|
|
umount -l /proc
|
|
mount -t proc proc /proc/
|
|
mount -t binfmt_misc none /proc/sys/fs/binfmt_misc/
|
|
exec "$@"
|