]> jfr.im git - solanum.git/commitdiff
Install it into /bin
authorWilliam Pitcock <redacted>
Fri, 25 Apr 2008 19:52:17 +0000 (14:52 -0500)
committerWilliam Pitcock <redacted>
Fri, 25 Apr 2008 19:52:17 +0000 (14:52 -0500)
tools/Makefile.in
tools/genssl.sh [changed mode: 0644->0755]

index f942c776377d4ab3cc040a245af361c28ca05e25..252130e5b0cf5d01d2218a80d94e788e009a31be 100644 (file)
@@ -26,7 +26,7 @@ libexecdir    = @libexecdir@
 confdir                = @confdir@
 localstatedir  = @localstatedir@
 
-PROGS          = viconf mkpasswd convertilines convertklines 
+PROGS          = viconf mkpasswd convertilines convertklines genssl.sh
 
 all: $(PROGS)
 
@@ -44,6 +44,8 @@ convertilines: convertilines.c
 convertklines: convertklines.c
        $(CC) $(CFLAGS) $(LDFLAGS) $(INCLUDES) convertklines.c -o convertklines $(IRCDLIBS)
 
+genssl.sh:
+
 clean:
        $(RM) -f encspeed viconf chkconf mkpasswd *~ core *.exe convertklines convertilines
 
old mode 100644 (file)
new mode 100755 (executable)
index 652d252..a55ae97
@@ -1,15 +1,15 @@
 #!/bin/sh
 echo "Generating certificate request .. "
-openssl req -new -nodes -out req.pem
+openssl req -new -nodes -out ../etc/req.pem
+
 echo "Generating self-signed certificate .. "
-openssl req -x509 -days 365 -in req.pem -key privkey.pem -out cert.pem
+openssl req -x509 -days 365 -in ../etc/req.pem -key ../etc/rsa.key -out ../etc/cert.pem
+
 echo "Generating Diffie-Hellman file for secure SSL/TLS negotiation .. "
-openssl dhparam -out dh.pem 2048
-mv privkey.pem rsa.key
+openssl dhparam -out ../etc/dh.pem 1024
 
 echo " 
-Now copy rsa.key, cert.pem and dh.pem into your IRCd's etc/ folder,
-then change these lines in the ircd.conf file:
+Now change these lines in the IRCd config file:
 
     ssl_private_key = "etc/rsa.key";
     ssl_cert = "etc/cert.pem";