I am using odrive on archlinux via the agent & cli client.
I have a folder that I have configured to backup to two locations. How to I remove one of them with the odrive cli client please?
When I enter this: odrive removebackuplocalPath remotePath
I get odrive: error: unrecognized arguments:
and when I enter this: odrive removebackuplocalPath
I get There are multiple backup jobs defined for this path. Navigate to ‘Backup to odrive’ in the odrive tray menu to remove the desired backup job(s).
The removebackup command now takes an ID. The status --backups will list more information about the defined backups, including the ID.
Example:
ubuntu@mcp:~/tmp$ ~/.odrive-agent/bin/odrive status --backups
ID: 3a5ad679-b870-4259-af35-aae1466f7bcd
Local Path: /home/ubuntu/tmp
Remote Path: /Google Drive/Temp/Backup/tmp
Status: Active
ID: e210c701-734d-49ed-b37f-3bca7d61be64
Local Path: /home/ubuntu/tmp
Remote Path: /Google Drive/Backup/tmp
Status: Active
~/.odrive-agent/bin/odrive removebackup 3a5ad679-b870-4259-af35-aae1466f7bcd
The backup job for /home/ubuntu/tmp was successfully removed.