This question has been flagged
1 Reply
3542 Views

Hi folks!

I have a special requirement for preparing and managing an OpenERP installation.

The source code must be authenticated!

I need either:

  • the MD5 of each available *.deb or *.tar.gz file.
  • OR: the GPG key of the "nightly" repository

Where can I find those?

Thanks,

MB

Avatar
Discard

I searched a lot the GPG key but I couldn't find it. I'm afraid that it doesn't exist, as I see the -y option of apt-get here: https://github.com/odoo/odoo/blob/master/setup/package.py#L306 I downloaded it once and then hold the package with `aptitude hold odoo`. I don't want to update it daily anyway.

using git and github (ssh or https) and you don't have to worry about authenticity of your code.

Best Answer

I was researching the same and found instruction at http://nightly.odoo.com

--> snip

wget -O - https://nightly.odoo.com/odoo.key | apt-key add - echo "deb http://nightly.odoo.com/8.0/nightly/deb/ ./" >> /etc/apt/sources.list apt-get update && apt-get install odoo

--> snip

Avatar
Discard