summaryrefslogtreecommitdiff
path: root/irc/ircd-ratbox-devel/files/patch-doc_example.conf
diff options
context:
space:
mode:
authorJean-Yves Lefort <jylefort@FreeBSD.org>2006-01-27 06:09:27 +0000
committerJean-Yves Lefort <jylefort@FreeBSD.org>2006-01-27 06:09:27 +0000
commit4019b070f6746eb2a0556fd6ac002eb6dce8ec70 (patch)
treed24afa98baa95e0b695620c127d103e5c2b0483f /irc/ircd-ratbox-devel/files/patch-doc_example.conf
parentUSE_MESA has been removed from bsd.port.mk. (diff)
Add ircd-ratbox.
This is a port of the ircd-ratbox IRC daemon. ircd-ratbox is the primary ircd used on EFnet; it combines the stability of an ircd required for a large production network together with a rich set of features, making it also suitable for use on smaller networks. WWW: http://www.ircd-ratbox.org/ PR: ports/92404 Submitted by: Shaun Amott <shaun@inerd.com>
Notes
Notes: svn path=/head/; revision=154556
Diffstat (limited to 'irc/ircd-ratbox-devel/files/patch-doc_example.conf')
-rw-r--r--irc/ircd-ratbox-devel/files/patch-doc_example.conf59
1 files changed, 59 insertions, 0 deletions
diff --git a/irc/ircd-ratbox-devel/files/patch-doc_example.conf b/irc/ircd-ratbox-devel/files/patch-doc_example.conf
new file mode 100644
index 000000000000..4108098b4891
--- /dev/null
+++ b/irc/ircd-ratbox-devel/files/patch-doc_example.conf
@@ -0,0 +1,59 @@
+--- doc/example.conf.orig Sat Jun 11 22:26:01 2005
++++ doc/example.conf Fri Jan 27 06:46:05 2006
+@@ -110,16 +110,16 @@
+ * - operspylog: operspy usage
+ * - ioerrorlog: IO errors
+ */
+- fname_userlog = "logs/userlog";
+- #fname_fuserlog = "logs/fuserlog";
+- fname_operlog = "logs/operlog";
+- #fname_foperlog = "logs/foperlog";
+- fname_serverlog = "logs/serverlog";
+- fname_glinelog = "logs/glinelog";
+- #fname_klinelog = "logs/klinelog";
+- fname_killlog = "logs/killlog";
+- fname_operspylog = "logs/operspylog";
+- #fname_ioerrorlog = "logs/ioerror";
++ fname_userlog = "%%LOGDIR%%/userlog";
++ #fname_fuserlog = "%%LOGDIR%%/fuserlog";
++ fname_operlog = "%%LOGDIR%%/operlog";
++ #fname_foperlog = "%%LOGDIR%%/foperlog";
++ fname_serverlog = "%%LOGDIR%%/serverlog";
++ fname_glinelog = "%%LOGDIR%%/glinelog";
++ #fname_klinelog = "%%LOGDIR%%/klinelog";
++ fname_killlog = "%%LOGDIR%%/killlog";
++ fname_operspylog = "%%LOGDIR%%/operspylog";
++ #fname_ioerrorlog = "%%LOGDIR%%/ioerror";
+ };
+
+ /* class {}: contain information about classes for users (OLD Y:) */
+@@ -309,7 +309,7 @@
+ * A password should not be defined when this is used, see
+ * doc/challenge.txt for more information.
+ */
+- #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
++ #rsa_public_key_file = "%%PREFIX%%/etc/ircd-ratbox/oper.pub";
+
+ /* umodes: the specific umodes this oper gets when they oper.
+ * If this is specified an oper will not be given oper_umodes
+@@ -878,7 +878,7 @@
+ *
+ * only define if servlink is not in same directory as ircd itself.
+ */
+- #servlink_path = "/usr/local/ircd/bin/servlink";
++ #servlink_path = "%%PREFIX%%/bin/servlink";
+
+ /* use egd: if your system does not have *random devices yet you
+ * want to use OpenSSL and encrypted links, enable this. Beware -
+@@ -923,8 +923,9 @@
+ /* module path: paths to search for modules specified below and
+ * in /modload.
+ */
+- path = "/usr/local/ircd/modules";
+- path = "/usr/local/ircd/modules/autoload";
++ path = "%%PREFIX%%/lib/ircd-ratbox/modules/";
++ path = "%%PREFIX%%/lib/ircd-ratbox/modules/autoload/";
++ path = "%%PREFIX%%/lib/ircd-ratbox/modules/contrib/";
+
+ /* module: the name of a module to load on startup/rehash */
+ #module = "some_module.so";