Pydrive backend is merged now in the development version of duplicity, so better use it from there.
Currently duplicity uses gdocs backend for Google Drive backups. gdocs uses deprecated API and don't allow backups for managed Google accounts. PyDrive backend solves both of those problems.
apt-get build-dep duplicity
apt-get install python-crypto python-setuptools checkinstall python-lockfile
gpg --gen-key
As stated above, PyDrive enables the use of managed Google accounts through a service account, and the instructions below will explain the use of such ones.
In the case of a single Google account with a large Drive, though, you might not want or be able to use that approach, and should use the following procedure instead
- Go to Google developers console and create a project
- Under APIs, find the "Drive API" and enable it
- Under Credentials, click "Create new Client ID"
- For "Application type", select "Installed application"
- For "Installed application type", select "Other" and click "Create Client ID"
- Click "Download JSON", and save the file under the name "client_secrets.json" in an appropriate location
- Make sure to do the following in the script you run duplicity from:
export GOOGLE_AUTH_MODE=personal
export GOOGLE_SECRETS_FILE=/some/path/to/client_secrets.json
export GOOGLE_CREDENTIALS_FILE=/some/path/to/client_credentials.json
duplicity <command> <args> pydrive://[email protected]/relevant_drive_folder
unset GOOGLE_AUTH_MODE
unset GOOGLE_SECRETS_FILE
unset GOOGLE_CREDENTIALS_FILE
- Go to Google developers console and create a service account
- Write down the email address of the account, [email protected]
- Download a .p12 key file, then convert it to the .pem:
openssl pkcs12 -in XXX.p12 -nodes -nocerts > pydriveprivatekey.pem
You'll need a password you got when created the account
- Make sure to do the following in the script you run duplicity from:
export GOOGLE_AUTH_MODE=managed
export GOOGLE_DRIVE_ACCOUNT_KEY="<contents of pydriveprivatekey.pem
including
line
breaks
and
a
final
quotation
mark>"
duplicity <command> <args> pydrive://[email protected]/relevant_drive_folder
unset GOOGLE_AUTH_MODE
unset GOOGLE_DRIVE_ACCOUNT_KEY
unset GOOGLE_CREDENTIALS_FILE
wget https://launchpad.net/duplicity/0.7-series/0.7.00/+download/duplicity-0.7.0.tar.gz
wget https://launchpad.net/duplicity/0.7-series/0.7.00/+download/duplicity-0.7.0.tar.gz.sig
gpg --verify duplicity-0.7.0.tar.gz.sig
If you don't have duplicity developers' key, i.e. getting this message:
gpg: Signature made Thu 23 Oct 2014 04:19:49 PM IDT using DSA key ID E654E600
gpg: Can't check signature: public key not found
Fetch the key:
gpg --recv-keys E654E600
gpg: requesting key E654E600 from hkp server keys.gnupg.net
gpg: key E654E600: public key "Duplicity Test (no password) <[email protected]>" imported
gpg: Total number processed: 1
gpg: imported: 1
Then try to verify again:
gpg --verify duplicity-0.7.0.tar.gz.sig
gpg: Signature made Thu 23 Oct 2014 04:19:49 PM IDT using DSA key ID E654E600
gpg: Good signature from "Duplicity Test (no password) <[email protected]>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg: There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9D95 920C ED4A 8D5F 8B08 6A9F 8B6F 8FF4 E654 E600
tar -xzvf duplicity-0.7.0.tar.gz
cd /duplicity-0.7.0
1 Find this:
uses_netloc = ['ftp',
'ftps',
'hsi',
's3',
'scp', 'ssh', 'sftp',
'webdav', 'webdavs',
'gdocs',
'http', 'https',
'imap', 'imaps',
'mega',
'copy']
And change to this (add "pydrive" to the end of the list):
uses_netloc = ['ftp',
'ftps',
'hsi',
's3',
'scp', 'ssh', 'sftp',
'webdav', 'webdavs',
'gdocs',
'http', 'https',
'imap', 'imaps',
'mega',
'copy',
'pydrive']
2 Find this:
try:
pu = urlparse.urlparse(url_string)
except Exception:
raise InvalidBackendURL("Syntax error in: %s" % url_string)
And right after that add:
if pu.query:
try:
self.keyfile = urlparse.parse_qs(pu.query)['keyfile']
except Exception:
raise InvalidBackendURL("Syntax error (keyfile) in: %s" % url_string)
On the same indent level
wget https://github.com/westerngateguard/duplicity-pydrive-backend/blob/master/pydrivebackend.py
mv pydrivebackend.py duplicity-0.7.0/duplicity/backends/
checkinstall python setup.py install
apt-get install python-yaml python-simplejson python-pip
checkinstall pip install PyDrive
duplicity full --encrypt-key *YOUR_gpg_KEY* --sign-key *YOUR_gpg_KEY* /local/folder/path pydrive://[email protected]/remote/path/on/google/drive?keyfile=/path/to/your/pydriveprivatekey.pem