[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [gnunet] branch master updated: gns/gnunet-gns-proxy-setup-
From: |
gnunet |
Subject: |
[GNUnet-SVN] [gnunet] branch master updated: gns/gnunet-gns-proxy-setup-ca: check for openssl in /home/user/.guix-profile/bin:/home/user/.guix-profile/sbin:/run/setuid-programs:/run/current-system/profile/bin:/run/current-system/profile/sbin |
Date: |
Sat, 05 May 2018 14:23:21 +0200 |
This is an automated email from the git hooks/post-receive script.
ng0 pushed a commit to branch master
in repository gnunet.
The following commit(s) were added to refs/heads/master by this push:
new d27c9b076 gns/gnunet-gns-proxy-setup-ca: check for openssl in
/home/user/.guix-profile/bin:/home/user/.guix-profile/sbin:/run/setuid-programs:/run/current-system/profile/bin:/run/current-system/profile/sbin
d27c9b076 is described below
commit d27c9b076302ac205d22c291cb0380289e4f95eb
Author: Nils Gillmann <address@hidden>
AuthorDate: Sat May 5 12:23:41 2018 +0000
gns/gnunet-gns-proxy-setup-ca: check for openssl in
/home/user/.guix-profile/bin:/home/user/.guix-profile/sbin:/run/setuid-programs:/run/current-system/profile/bin:/run/current-system/profile/sbin
Signed-off-by: Nils Gillmann <address@hidden>
---
src/gns/gnunet-gns-proxy-setup-ca | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/src/gns/gnunet-gns-proxy-setup-ca
b/src/gns/gnunet-gns-proxy-setup-ca
index 72d478a50..52f4b012b 100644
--- a/src/gns/gnunet-gns-proxy-setup-ca
+++ b/src/gns/gnunet-gns-proxy-setup-ca
@@ -2,12 +2,22 @@
# This shell script will generate an X509 certificate for your gnunet-gns-proxy
# and install it (for both GNUnet and your browser).
#
+
+# TODO: We should sed the real paths to the binaries involved here.
+
if ! which certutil > /dev/null
then
echo "'certutil' command not found. Please install it."
exit 1
fi
+if ! which openssl > /dev/null
+then
+ echo "'openssl' command not found. Please install it."
+ exit 1
+fi
+
+
echo "Generating CA"
options=''
while getopts "c:" opt; do
--
To stop receiving notification emails like this one, please contact
address@hidden
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [gnunet] branch master updated: gns/gnunet-gns-proxy-setup-ca: check for openssl in /home/user/.guix-profile/bin:/home/user/.guix-profile/sbin:/run/setuid-programs:/run/current-system/profile/bin:/run/current-system/profile/sbin,
gnunet <=