From 6f6b8045935c2f70eaf2716ccc8368cfede9939e Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 10 Jan 2024 20:14:52 +0100 Subject: [PATCH] Solved copy bug --- .../system-storage-optimizer/files/system-storage-optimizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/system-storage-optimizer/files/system-storage-optimizer.py b/roles/system-storage-optimizer/files/system-storage-optimizer.py index 52df96c1..1cbf10e6 100644 --- a/roles/system-storage-optimizer/files/system-storage-optimizer.py +++ b/roles/system-storage-optimizer/files/system-storage-optimizer.py @@ -55,7 +55,7 @@ def pause_and_move(storage_path, volume, volume_path, containers): os.makedirs(storage_volume_path,exist_ok=False) # Move the data - run_rsync(volume_path, storage_volume_path) + run_rsync(f"{storage_volume_path}/", f"{volume_path}/") # Delete the source directory delete_directory(volume_path)