stress_tests/fsstress-gocryptfs.bash: use rm -Rf for cleanup

Apparently, kernel 5.8 now allows unprivileged "mknod /tmp/x c 0 0":

	vfs: allow unprivileged whiteout creation
	https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.8.9&id=a3c751a50fe6bbe50eb7622a14b18b361804ee0c

which is why rm throws a new prompt:

	rm: remove write-protected character special file '...'?

Use rm -Rf to suppress that.
This commit is contained in:
Jakob Unterwurzacher 2020-09-13 14:09:38 +02:00
parent 04b46c7adf
commit af7386713c
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ do
wait
echo " rm"
rm -R $MNT/*
rm -Rf $MNT/*
let N=$N+1
done