Welcome to mirror list, hosted at ThFree Co, Russian Federation.

run_wait.sh « ext-links « others « test - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d600e37bacade63b08c1498722dacebbd0a546c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

echo "Wait: $$"
while [ ! -e "$finf" ]; do
	echo "WAIT ($$)"
	sleep 1;
done

echo "Links after:"
$ip link list

# The mvln device (exported from run.sh) should exits in
# namespace after we get restored
echo "Check for $mvln:"
$ip link list $mvln && echo "PASS" || echo "FAIL"