#!/bin/sh
# $Id: mkm-rmm,v 1.4 2000/06/10 09:17:12 assar Exp $
FS=${FS:-${objdir}/../appl/fs/fs}
${FS} sa . system:anyuser all || exit 1
${FS} mkm root.cell root.cell || exit 1
test -d root.cell || exit 1 
${FS} rmm root.cell || exit 1
test -d root.cell && exit 1 
${FS} mkm root.cell root.cell || exit 1
test -d root.cell || exit 1 
${FS} rmm root.cell || exit 1
test -d root.cell && exit 1 
exit 0
