diff options
Diffstat (limited to 'scenarios')
-rwxr-xr-x | scenarios/clean | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scenarios/clean b/scenarios/clean index 9d23543..1d0c4ff 100755 --- a/scenarios/clean +++ b/scenarios/clean @@ -1,9 +1,10 @@ #!/usr/bin/env python3 import os -from fragments import garage, shared +from fragments import garage, shared, minio garage.destroy() +minio.destroy() if len(shared.storage_path) > 8 and shared.id() == 1: shared.exec(f"rm -r {shared.storage_path}") shared.log("clean done") |