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
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
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.
Excellent, thank you.