-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No dedicated Command Line Option for "Copy"? #18
Comments
I didn't think this was necessary when I originally coded this. My reasoning: A storage isn't just random files, its files created by I can add this (it's certainly easy enough), but I'd like to understand your use case a little better. If you're backing up to a local storage (fair enough), wouldn't you want to copy to the remote storage immediately after that? Why wait? Thanks. |
My use case:
a) Since this copy process runs on computer X it must run separately and not combined with one of the preceding Backup tasks that are running on the respective computers. b) The COPY task will run for many weeks because of the limited upload speed. But I need to restart it again and again because unfortunately Duplicacy suddenly stops if Backblaze B2 gives some random error messages and Duplicacy unfortunately doesn't resume the copy process. |
Yeah, that's a use case alright. How do you drive this with I'll look at this. There are other changes going into 1.4 that will require minor updates to how you run it (primarily in configuration). I think I'm going to deprecate -b (backup/copy), -p (prune), and -c (check). Then I'll create -backup, -copy, -prune, and -check. The only one that will stick around: -a (all). The problem with -b is that it's not specific and confusing if I start allowing backup and copy to be separated. Most of the time I use -a except for a very large repository, where check can take a very long time against Google Cloud Drive (like 30 minutes). I don't see a need to run that nightly, so I run it a few times a week via scheduling. Hopefully that's true with others too, in which case most people wouldn't be affected by this change. |
I had problems like that with Azure; I reported them and they were fixed. You should open an issue for You could also do some fancy filtering of the log and restart |
In some backup scenerios, you may want to do a "duplicacy backup" operation without doing a "duplicacy copy" operation, or you may want to do a "duplicacy copy" operation on it's own. Modify command line options to allow for this. This fixes issue #18.
Resolved in commit 0bd554f. Closing this issue. |
It seems there's no dedicated Command Line Option for "Copy", just a combined one:
So I can not start a Copy process without a preceding Backup operation?
I want to run Copy without Backup to copy a local storage to a cloud storage. My workaround: I created a "fake" backup with an empty fake folder that runs prior to Copy.
The text was updated successfully, but these errors were encountered: