diff options
author | Sven Wegener <swegener@gentoo.org> | 2004-07-24 00:17:37 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2004-07-24 00:17:37 +0000 |
commit | 53155a8e8ce04cbc6c7bc2e1b114c22ca135728b (patch) | |
tree | fa270cab18ed68bb7cb55af684fc2085b3a1a5fc /net-irc/unrealircd/files | |
parent | Keyword ~alpha. (diff) | |
download | historical-53155a8e8ce04cbc6c7bc2e1b114c22ca135728b.tar.gz historical-53155a8e8ce04cbc6c7bc2e1b114c22ca135728b.tar.bz2 historical-53155a8e8ce04cbc6c7bc2e1b114c22ca135728b.zip |
Version bump. Closes bug #48965 and bug #41919. Switched from mkunrealircd-cert to ssl-cert.eclass.
Diffstat (limited to 'net-irc/unrealircd/files')
-rw-r--r-- | net-irc/unrealircd/files/digest-unrealircd-3.2.1 | 1 | ||||
-rw-r--r-- | net-irc/unrealircd/files/digest-unrealircd-3.2_rc2 | 1 | ||||
-rw-r--r-- | net-irc/unrealircd/files/mkunrealircd-cert | 4 | ||||
-rw-r--r-- | net-irc/unrealircd/files/unrealircd.confd | 5 | ||||
-rw-r--r-- | net-irc/unrealircd/files/unrealircd.rc | 4 |
5 files changed, 5 insertions, 10 deletions
diff --git a/net-irc/unrealircd/files/digest-unrealircd-3.2.1 b/net-irc/unrealircd/files/digest-unrealircd-3.2.1 new file mode 100644 index 000000000000..97de2ae29e96 --- /dev/null +++ b/net-irc/unrealircd/files/digest-unrealircd-3.2.1 @@ -0,0 +1 @@ +MD5 ebe56fd42fc229681f527932eaa173cc Unreal3.2.1.tar.gz 1614434 diff --git a/net-irc/unrealircd/files/digest-unrealircd-3.2_rc2 b/net-irc/unrealircd/files/digest-unrealircd-3.2_rc2 deleted file mode 100644 index 603de01d596d..000000000000 --- a/net-irc/unrealircd/files/digest-unrealircd-3.2_rc2 +++ /dev/null @@ -1 +0,0 @@ -MD5 8b7f946f0e9a48628ce5ee6f2cbf080f Unreal3.2-RC2.tar.gz 1427055 diff --git a/net-irc/unrealircd/files/mkunrealircd-cert b/net-irc/unrealircd/files/mkunrealircd-cert deleted file mode 100644 index 33db9b1a2a89..000000000000 --- a/net-irc/unrealircd/files/mkunrealircd-cert +++ /dev/null @@ -1,4 +0,0 @@ -#!/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 /etc/unrealircd/server.cert.pem diff --git a/net-irc/unrealircd/files/unrealircd.confd b/net-irc/unrealircd/files/unrealircd.confd index ce93122b1d7b..922d9922abef 100644 --- a/net-irc/unrealircd/files/unrealircd.confd +++ b/net-irc/unrealircd/files/unrealircd.confd @@ -1,15 +1,14 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/files/unrealircd.confd,v 1.3 2004/07/14 23:48:05 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/files/unrealircd.confd,v 1.4 2004/07/24 00:17:37 swegener Exp $ # user to run unrealircd as -UNREALIRCD_USER="UserBlah" +UNREALIRCD_USER="unrealircd" # extra options to pass to unrealircd ... # useful if you want to specify conf files other # than the default # -# [-f config] # [-h servername] # [-p portnumber] # [-x loglevel] diff --git a/net-irc/unrealircd/files/unrealircd.rc b/net-irc/unrealircd/files/unrealircd.rc index 47c710087fdc..c832fd0ea077 100644 --- a/net-irc/unrealircd/files/unrealircd.rc +++ b/net-irc/unrealircd/files/unrealircd.rc @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/files/unrealircd.rc,v 1.3 2004/07/14 23:48:05 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/files/unrealircd.rc,v 1.4 2004/07/24 00:17:37 swegener Exp $ depend() { need net @@ -11,7 +11,7 @@ depend() { start() { ebegin "Starting unrealircd" start-stop-daemon --start --quiet --exec /usr/bin/unrealircd \ - --chuid ${UNREALIRCD_USER} -- ${UNREALIRCD_OPTS} + --chuid ${UNREALIRCD_USER} -- ${UNREALIRCD_OPTS} &>&1 eend $? } |