Change the FFSB behaviour if the reuse-flag of the filesystem is "1" but the
filesystem can not be reused: Previously FFSB created a new filesystem, now FFSB
fails with an error message.
printf("checking existing fs: %s\n", fs->basedir);
ret = check_existing_fileset(fs);
if (ret == NULL) {
- printf("recreating new fileset\n");
- ret = construct_new_fileset(fs);
+ fprintf(stderr, "Can not reuse filesystem");
+ exit(1);
}
} else {
printf("creating new fileset %s\n", fs->basedir);