qa: test subdir mounts

This commit is contained in:
Sage Weil 2009-11-06 12:12:24 -08:00
parent 057b046402
commit 12482dba16

22
qa/client/30_subdir_mount.sh Executable file
View File

@ -0,0 +1,22 @@
#!/bin/bash -x
basedir=`echo $0 | sed 's/[^/]*$//g'`.
. $basedir/common.sh
mount
mkdir -p $mnt/sub
echo sub > $mnt/sub/file
umount
mkdir -p $mnt/1
mkdir -p $mnt/2
/bin/mount -t ceph $monhost:/sub $mnt/1
grep sub $mnt/1/file
/bin/mount -t ceph $monhost:/ $mnt/2
grep sub $mnt/2/sub/file
/bin/umount $mnt/1
grep sub $mnt/2/sub/file
/bin/umount $mnt/2