* properly run configtest without starting the ircd * don't put unrealircd's pidfile where unrealircd could write it * add IUSE + RDEPEND to build geoip_classic compare with 6.0.4.2.ebuild, confd-r4, initd-r3
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Copyright 1999-2021 Gentoo Authors
 | 
						|
# Distributed under the terms of the GNU General Public License v2
 | 
						|
 | 
						|
# Where to chroot to
 | 
						|
# Uncomment this line for chrooting
 | 
						|
#UNREALIRCD_CHROOT="/var/chroot/ircd"
 | 
						|
UNREALIRCD_CHROOT=""
 | 
						|
 | 
						|
# Which configuration file to load instead of unrealircd.conf. If you
 | 
						|
# want to run multiple instances of unrealircd, you must edit
 | 
						|
# files::pidfile to match UNREALIRCD_PIDFILE. You should also ensure
 | 
						|
# that files::tunefile is different for each unrealircd instance. See
 | 
						|
# https://www.unrealircd.org/docs/Configuration#Files_block
 | 
						|
#
 | 
						|
# To support multiple instances of unrealircd, you may create symlinks
 | 
						|
# in /etc/init.d pointing to /etc/init.d/unrealircd. It is recommended
 | 
						|
# that the scheme unrealircd.${instance_name} be used. For each
 | 
						|
# instance, you may make a copy of this file with the appropriate name
 | 
						|
# to override default options specific to that instance.
 | 
						|
UNREALIRCD_CONF="${UNREALIRCD_CHROOT}/etc/unrealircd/${SVCNAME}.conf"
 | 
						|
 | 
						|
# The path where unrealircd is configured to create its pidfile.
 | 
						|
UNREALIRCD_PIDFILE="${UNREALIRCD_CHROOT}/run/${SVCNAME}.pid"
 | 
						|
 | 
						|
# extra options to pass to unrealircd ...
 | 
						|
# You should not specify the -f option here; use
 | 
						|
# UNREALIRCD_CONF instead.
 | 
						|
#
 | 
						|
# [-h servername]
 | 
						|
# [-p portnumber]
 | 
						|
# [-x loglevel]
 | 
						|
# [-t] (to enable debug output)
 | 
						|
UNREALIRCD_OPTS=""
 | 
						|
 | 
						|
# Extra flags to pass to start-stop-daemon. When initially
 | 
						|
# debugging, removing --quiet may help.
 | 
						|
UNREALIRCD_SSD_OPTS="--quiet"
 |