diff --git a/.gitignore b/.gitignore index e3b95ea9ca809f2935a44cad89176fc7d20b30c4..15a6fcf101b4542345edf8fb1bad202aafdb8850 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ __pycache__/ .coverage +.pytest_cache/ .vscode/ rwm.conf testfile* diff --git a/Makefile b/Makefile index 71fd0ed371a4a0ee792ef8c691d137bf2c094052..17aa5f2147fd8dc37a8a73d58547637175d374d7 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: lint install: - apt-get -y install awscli make python3-cryptography rclone yamllint + apt-get -y install awscli make python3-cryptography rclone restic yamllint venv: apt-get -y install python3-venv diff --git a/README.md b/README.md index 8615f2ee11a55ffbd3e6ee6b93d49156953d9859..df6e49dc95f39d4d62ccad30a21f54d18616c27f 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,13 @@ rwm rcc lsl rwmbe:/ ### Notes +* https://rclone.org/commands/rclone_sync/ + +It is always the contents of the directory that is synced, not the directory itself. +So when source:path is a directory, it's the contents of source:path that are copied, +not the directory name and contents. See extended explanation in the copy command if unsure. + + * corect, fails to download corrupted files ``` root@bacula-test:/opt/rwm# ./rwm.py rcc copy rwmbe:/testfile.txt . diff --git a/rwm.py b/rwm.py index 86bfa764c01329eeb645d0b9c1931080928fec12..874b241d7b46511028eb63de76a998c41c1b2147 100755 --- a/rwm.py +++ b/rwm.py @@ -116,7 +116,6 @@ class RWM: "RESTIC_PASSWORD": self.config["RES_PASSWORD"], "RESTIC_REPOSITORY": f"s3:{self.config['S3_ENDPOINT_URL']}/{self.config['RES_BUCKET']}", } - #--one-file-system return subrun(["restic"] + args, env=env, check=False).returncode def main(argv=None, dict_config=None):