I am very confused as to how Duplicity works. I set up a backup script with duplicity to amazon s3 and it works great.
Code:
#duplicity \
# --encrypt-key=${GPG_KEY} \
# --sign-key=${GPG_KEY} \
# --include=/var/www \
# --exclude=/** \
# ${SOURCE} ${DEST}
my restore looks like this
Code:
#duplicity list-current-files ${DEST}
duplicity \
--file-to-restore var/www \
${DEST} \
/root/restore
The restore works great from my linode.
but...
I transferred my gpg keys to another host (my desktop) and I tried running the restore script, and it shows that there are no files in the archive! It appears that duplicity created a new set of files for my desktop as if I was planning on setting up backup for it also.
It appears to keep the data isolated and detects which host is accessing the archive.
But I really need to be able to access the linode backup fles from my desktop computer! what is Duplicity doing to keep the two hosts data separate, and how do I force it to stop???