mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 18:07:57 +00:00
9 lines
198 B
Bash
9 lines
198 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ "$CRTOOLS_SCRIPT_ACTION" == "setup-namespaces" ]; then
|
||
|
echo "Will up lo at $CRTOOLS_INIT_PID netns"
|
||
|
nsenter -t "$CRTOOLS_INIT_PID" --net ip link set up dev lo || exit 1
|
||
|
fi
|
||
|
|
||
|
exit 0
|