rpms/ngircd/devel .cvsignore, 1.2, 1.3 ngircd.conf, 1.1, 1.2 ngircd.init, 1.1, 1.2 ngircd.spec, 1.2, 1.3 sources, 1.2, 1.3

Andreas Thienemann ixs at fedoraproject.org
Thu Oct 23 10:39:29 UTC 2008


Author: ixs

Update of /cvs/pkgs/rpms/ngircd/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19749

Modified Files:
	.cvsignore ngircd.conf ngircd.init ngircd.spec sources 
Log Message:
* Thu Oct 23 2008 Andreas Thienemann <andreas at bawue.net> 0.12.1-1
- Updated to 0.12.1
- Updated configuration sample



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ngircd/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore	11 Feb 2008 16:49:26 -0000	1.2
+++ .cvsignore	23 Oct 2008 10:38:59 -0000	1.3
@@ -1 +1 @@
-ngircd-0.11.0.tar.gz
+ngircd-0.12.1.tar.gz


Index: ngircd.conf
===================================================================
RCS file: /cvs/pkgs/rpms/ngircd/devel/ngircd.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ngircd.conf	11 Feb 2008 16:49:26 -0000	1.1
+++ ngircd.conf	23 Oct 2008 10:38:59 -0000	1.2
@@ -1,4 +1,4 @@
-# $Id$
+a# $Id$
 
 #
 # This is a sample configuration file for the ngIRCd, which must be adepted
@@ -6,6 +6,10 @@
 #
 # Comments are started with "#" or ";".
 #
+# A lot of configuration options in this file start with a ";". You have
+# to remove the ";" in front of each variable to actually set a value!
+# The disabled variables are shown with example values for completeness.
+#
 # Use "ngircd --configtest" (see manual page ngircd(8)) to validate that the
 # server interprets the configuration file as expected!
 #
@@ -31,14 +35,16 @@
 	;AdminInfo1 = Description
 	;AdminInfo2 = Location
 	;AdminEMail = admin at irc.server
- 
+
 	# Ports on which the server should listen. There may be more than
 	# one port, separated with ",". (Default: 6667)
 	;Ports = 6667, 6668, 6669
 
-	# IP address on which the server should listen. (Default: empty,
-	# so the server listens on all IP addresses of the system)
-	;Listen = 1.2.3.4
+	# comma seperated list of IP addresses on which the server should
+	# listen. Default values are:
+	# "0.0.0.0" or (if compiled with IPv6 support) "::,0.0.0.0"
+	# so the server listens on all IP addresses of the system by default.
+	Listen = 127.0.0.1
 
 	# Text file with the "message of the day" (MOTD). This message will
 	# be shown to all users connecting to the server:
@@ -96,17 +102,29 @@
 	# Allow Pre-Defined Channels only (see Section [Channels])
 	;PredefChannelsOnly = no
 
+	# Don't do any DNS lookups when a client connects to the server.
+	;NoDNS = no
+
+	# try to connect to other irc servers using ipv4 and ipv6, if possible
+	;ConnectIPv6 = yes
+	;ConnectIPv4 = yes
+
 	# Maximum number of simultaneous connection the server is allowed
-	# to accept (<=0: unlimited):
-	;MaxConnections = -1
+	# to accept (0: unlimited):
+	;MaxConnections = 0
 
 	# Maximum number of simultaneous connections from a single IP address
-	# the server will accept (<=0: unlimited):
+	# the server will accept (0: unlimited):
 	;MaxConnectionsIP = 5
 
-	# Maximum number of channels a user can be member of (<=0: no limit):
+	# Maximum number of channels a user can be member of (0: no limit):
 	;MaxJoins = 10
 
+	# Maximum length of an user nick name (Default: 9, as in RFC 2812).
+	# Please note that all servers in an IRC network MUST use the same
+	# maximum nick name length!
+	;MaxNickLength = 9
+
 [Operator]
 	# [Operator] sections are used to define IRC Operators. There may be
 	# more than one [Operator] block, one for each local operator.
@@ -145,6 +163,10 @@
 	# this server should establish the connection).
 	;Host = connect-to-host.the.net
 
+	# IP address to use as _source_ address for the connection. if unspecified,
+	# ngircd will let the operating system pick an address.
+	;Bind = 10.0.0.1
+
 	# Port of the server to which the ngIRCd should connect. If you
 	# assign no port the ngIRCd waits for incoming connections.
 	;Port = 6667
@@ -160,6 +182,13 @@
 	# Group of this server (optional)
 	;Group = 123
 
+	# Set the "Passive" option to "yes" if you don't want this ngIRCd to
+	# connect to the configured peer (same as leaving the "Port" variable
+	# empty). The advantage of this option is that you can actually configure
+	# a port an use the IRC command CONNECT more easily to manually connect
+	# this specific server later.
+	;Passive = no
+
 [Server]
 	# More [Server] sections, if you like ...
 
@@ -178,7 +207,13 @@
 	;Topic = a great topic
 
 	# Initial channel modes
-	;Modes = tn
+	;Modes = tnk
+
+	# initial channel password (mode k)
+	;Key = Secret
+
+	# maximum users per channel (mode l)
+	;MaxUsers = 23
 
 [Channel]
 	# More [Channel] sections, if you like ...


Index: ngircd.init
===================================================================
RCS file: /cvs/pkgs/rpms/ngircd/devel/ngircd.init,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ngircd.init	11 Feb 2008 16:49:26 -0000	1.1
+++ ngircd.init	23 Oct 2008 10:38:59 -0000	1.2
@@ -7,6 +7,13 @@
 # description: ngircd is an IRC daemon
 # processname: ngircd
 # pidfile: /var/run/ngircd.pid
+### BEGIN INIT INFO
+# Provides: ngircd
+# Required-Start: $local_fs $network
+# Required-Stop: $local_fs $network
+# Short-Description: start and stop the ngircd IRC daemon
+# Description: ngircd is an IRC daemon
+### END INIT INFO
 
 # Source function library.
 . /etc/rc.d/init.d/functions


Index: ngircd.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ngircd/devel/ngircd.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ngircd.spec	11 Aug 2008 19:22:20 -0000	1.2
+++ ngircd.spec	23 Oct 2008 10:38:59 -0000	1.3
@@ -4,8 +4,8 @@
 %define         gecos     "Next Generation IRC Daemon"
 
 Name:           ngircd
-Version:        0.11.0
-Release:        2%{?dist}
+Version:        0.12.1
+Release:        1%{?dist}
 Summary:        Next Generation IRC Daemon
 Group:          System Environment/Daemons
 License:        GPLv2+
@@ -92,6 +92,10 @@
 
 
 %changelog
+* Thu Oct 23 2008 Andreas Thienemann <andreas at bawue.net> 0.12.1-1
+- Updated to 0.12.1
+- Updated configuration sample
+
 * Mon Aug 11 2008 Tom "spot" Callaway <tcallawa at redhat.com> 0.11.0-2
 - fix license tag
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ngircd/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources	11 Feb 2008 16:49:26 -0000	1.2
+++ sources	23 Oct 2008 10:38:59 -0000	1.3
@@ -1 +1 @@
-c322656b173ecec3d626355c0c3e875f  ngircd-0.11.0.tar.gz
+db8618877a4dd5fb2be50402a2cb4a14  ngircd-0.12.1.tar.gz




More information about the scm-commits mailing list