Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / tests / mkm-rmm
1 #!/bin/sh
2 # $Id$
3 FS=${FS:-${objdir}/../appl/fs/fs}
4 ${FS} sa . system:anyuser all || exit 1
5 ${FS} mkm root.cell root.cell || exit 1
6 test -d root.cell || exit 1
7 ${FS} rmm root.cell || exit 1
8 test -d root.cell && exit 1
9 ${FS} mkm root.cell root.cell || exit 1
10 test -d root.cell || exit 1
11 ${FS} rmm root.cell || exit 1
12 test -d root.cell && exit 1
13 exit 0