ClickHouse/tests/testflows/clean
Vitaliy Zakaznikov 4b87ae684c Adding 'clean' script to clean up _instances folders.
Updating RBAC to run on the latest master.
Fixing ldap SRS reference issue.
2021-05-07 15:40:58 -04:00

10 lines
238 B
Bash
Executable File

#!/bin/bash
#
# Clean up all the _instances folders where
# ClickHouse services store their data.
#
# Note: needs root privilege because Docker mounts
# these folders into containers.
#
find . -type d -name _instances | sudo xargs rm -rf