diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-09-26 17:05:56 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-09-26 17:05:56 +0200 |
commit | 71d0d82361ed52d135b2c3466ce466df286ea0db (patch) | |
tree | 2e444daf87ac8886bdd25ce05acc935d355cdcc9 /scenarios/clean | |
parent | b0b4b162dcc8ec6545d1a0b5e854021c8981a3e1 (diff) | |
download | mknet-71d0d82361ed52d135b2c3466ce466df286ea0db.tar.gz mknet-71d0d82361ed52d135b2c3466ce466df286ea0db.zip |
Add s3billion minio graphs
Diffstat (limited to 'scenarios/clean')
-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") |