diff options
author | Chuck Short <zul@gentoo.org> | 2004-03-06 12:15:25 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2004-03-06 12:15:25 +0000 |
commit | a7624fbd92252e15b66d2d7110bdec52fc4e3e26 (patch) | |
tree | 0c4c695b4aea118168ab0519c824accc3e262928 /net-irc/unrealircd/files | |
parent | All clear, closing bug 27301 (diff) | |
download | historical-a7624fbd92252e15b66d2d7110bdec52fc4e3e26.tar.gz historical-a7624fbd92252e15b66d2d7110bdec52fc4e3e26.tar.bz2 historical-a7624fbd92252e15b66d2d7110bdec52fc4e3e26.zip |
SSL fixes.
Diffstat (limited to 'net-irc/unrealircd/files')
-rw-r--r-- | net-irc/unrealircd/files/mkunrealircd-cert | 4 | ||||
-rw-r--r-- | net-irc/unrealircd/files/unrealircd.confd | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/net-irc/unrealircd/files/mkunrealircd-cert b/net-irc/unrealircd/files/mkunrealircd-cert new file mode 100644 index 000000000000..6d7dfd75fde7 --- /dev/null +++ b/net-irc/unrealircd/files/mkunrealircd-cert @@ -0,0 +1,4 @@ +#!/bin/bash + +openssl req -new -config /etc/unrealircd/ssl.cnf -out /etc/unrealircd/server.req.pem -keyout /etc/unrealircd/server.key.pem -nodes +openssl req -x509 -config /etc/unrealircd/ssl.cnf -days 365 -in /etc/unrealircd/server.req.pem -key /etc/unrealircd/server.key.pem -out server.cert.pem diff --git a/net-irc/unrealircd/files/unrealircd.confd b/net-irc/unrealircd/files/unrealircd.confd index 37135d437b66..47f5d308d5c9 100644 --- a/net-irc/unrealircd/files/unrealircd.confd +++ b/net-irc/unrealircd/files/unrealircd.confd @@ -1,9 +1,9 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/files/unrealircd.confd,v 1.1 2003/02/01 04:47:09 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/files/unrealircd.confd,v 1.2 2004/03/06 12:15:13 zul Exp $ # user to run unrealircd as -UNREALIRCD_USER="UserBah" +UNREALIRCD_USER="UserBlah" # extra options to pass to unrealircd ... # useful if you want to specify conf files other |