You are not logged in.
I'm using the borg backup script from https://borgbackup.readthedocs.io/en/1. … ng-backups
It used to work, but now I get the error:
borg create: error: argument ARCHIVE: Invalid location format: "::host-2022-10-10T07:12:41"
According to https://github.com/borgbackup/borg/issues/4629, the line
::'{hostname}-{now}' \
might cause the problem.
How do I fix this?
Last edited by questionask (2022-10-10 17:02:45)
Offline
Did you try the suggestions from the github issue? Especially related to the declaration of
BORG_REPO
I am using
::'{hostname}-{now}' \
in my backup scripts as well without any problems.
Offline
I'm not sure how to adapt that (ssh) to my situation because I'm doing a backup to an external hard disk drive:
export BORG_REPO=/run/media/username/backup-RAID1/reponame
Offline
I'm not sure how to adapt that (ssh) to my situation because I'm doing a backup to an external hard disk drive:
export BORG_REPO=/run/media/username/backup-RAID1/reponame
Hi,
In my own script I simple-quoted the path :
export REPOSITORY='/home/user/BACKUP/user_bkp'
without problem
Offline
Thanks. Simple-quoting the path solved my problem.
Offline