GUI with multiple backends

MonkeyPhonics     Mar 1 5:24PM 2017 GUI

Hi

I setup a repo via the GUI on macOS but then also added another storage via the CLI.

The GUI is set to open automatically on login, will it include the other storage in its schedule?

Thanks


gchen    Mar 2 12:36PM 2017

The GUI version can support only one storage backend.

There is a workaround: you can create a post-backup script to invoke the second backup:

#!/bin/bash
/path/to/duplicacy -no-script backup -storage second_storage

The -no-script is important; otherwise there would be an infinite loop of calling the second backup.


MonkeyPhonics    Mar 2 3:55PM 2017

Excellent, thank you.