blob: 300cca21de513e1c86b55563f9fe645d38f904f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/sh -x
set -e
mkdir -p 1/a
exec 3<> 1/a/file1
echo -n a >&3
mkdir 1/.snap/s1
echo -n b >&3
mkdir 2
# create new snaprealm at dir a, file1's cap should be attached to the new snaprealm
mv 1/a 2
mkdir 2/.snap/s2
echo -n c >&3
exec 3>&-
grep '^a$' 1/.snap/s1/a/file1
grep '^ab$' 2/.snap/s2/a/file1
grep '^abc$' 2/a/file1
rmdir 1/.snap/s1
rmdir 2/.snap/s2
rm -rf 1 2
echo OK
|