-
-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this gave me an error on my machine. #308
base: master
Are you sure you want to change the base?
Conversation
adding this line fixed the problem.
@evilaliv3 the TLS certificate on deb.globaleaks.org has expired. @virgil I suspect that this will not get merged. Can you share the the log output of the install with/without the |
I already killed the machine and moved to Trusty after another error occurred with the python cryptography package. It's fine if it doesn't get merged. But adding that line allowed me to progress one step further on the new Ubuntu 16.04 LTE . |
@@ -86,7 +86,7 @@ fi | |||
|
|||
echo "Adding GlobaLeaks PGP key to trusted APT keys" | |||
TMPFILE=/tmp/globaleaks_key.$RANDOM | |||
DO "wget https://deb.globaleaks.org/globaleaks.asc -O $TMPFILE" | |||
DO "wget --no-check-certificate https://deb.globaleaks.org/globaleaks.asc -O $TMPFILE" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the certificate just expired today and i've renewed it but we cannot remove the check of https :)
@@ -113,6 +113,9 @@ if [ ! -f /etc/apt/sources.list.d/globaleaks.list ]; then | |||
echo "deb http://deb.globaleaks.org $DISTRO_CODENAME/" > /etc/apt/sources.list.d/globaleaks.list | |||
fi | |||
|
|||
# adding this fixed a problem in my installation | |||
DO "pip install --upgrade pip" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this is needed? what was the error?
The error was on Ubuntu 16.04 If dont want to add it that's cool. I simply saw it as no harm done and it On Tuesday, October 18, 2016, Giovanni Pellerano notifications@github.com
|
5fb2018
to
573cb0e
Compare
47153c1
to
a701b5f
Compare
49963c6
to
3c31643
Compare
7920f58
to
bf26275
Compare
adding this line fixed the problem.