aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@Jona.local>2005-11-18 14:21:44 +0100
committerWilmer van der Gaast <wilmer@Jona.local>2005-11-18 14:21:44 +0100
commit517ecc45fde83e3b13352fbff5eaa8755296dc7c (patch)
tree799e5b8cddb80c67afa4b9810127152f401c4270
parentc572dd67167c0365a5bf62899c31efd4f223acaa (diff)
Reviewed/tested the xinetd file and added some comments, received too many complaints about it lately.
-rw-r--r--doc/bitlbee.xinetd11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/bitlbee.xinetd b/doc/bitlbee.xinetd
index 5b2dec3f..5f05e26e 100644
--- a/doc/bitlbee.xinetd
+++ b/doc/bitlbee.xinetd
@@ -1,12 +1,19 @@
## xinetd file for BitlBee. Please check this file before using it, the
## user, port and/or binary location might be wrong.
-service 6667
+## This file assumes you have ircd somewhere in your /etc/services, if things
+## don't work, check that file first.
+service ircd
{
socket_type = stream
protocol = tcp
wait = no
+
+ ## You most likely want to change these two
user = nobody
server = /usr/local/sbin/bitlbee
- port = 6667
+
+ ## xinetd is fucking retarded, what's the use of this port flag if
+ ## it HAS to be the same as in /etc/services ?
+ # port = 6667
}