Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / qa / workunits / rename / pri_pri.sh
1 #!/bin/sh -ex
2
3 # srcdn=destdn
4 touch ./a/file1
5 touch ./a/file2
6 mv ./a/file1 ./a/file2
7
8 # different (srcdn != destdn)
9 touch ./a/file3
10 touch ./b/file4
11 mv ./a/file3 ./b/file4
12