diff options
author | tcely <tcely@users.noreply.github.com> | 2019-04-10 23:55:36 -0400 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-04-11 13:27:53 +0000 |
commit | ff1b6292b8d0e0fba4b5abb230aeae8c93136d9c (patch) | |
tree | 3df284be5aead469fe56cd43e5ab7f6716151c45 /community/quassel/quasselcore.confd | |
parent | a8a18464a9bc392c03fa9b563cbcb5cdf1105aa0 (diff) | |
download | aports-ff1b6292b8d0e0fba4b5abb230aeae8c93136d9c.tar.bz2 aports-ff1b6292b8d0e0fba4b5abb230aeae8c93136d9c.tar.xz |
community/quassel: rewrite -openrc files
Diffstat (limited to 'community/quassel/quasselcore.confd')
-rw-r--r-- | community/quassel/quasselcore.confd | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/community/quassel/quasselcore.confd b/community/quassel/quasselcore.confd index c687337775..f912756a2b 100644 --- a/community/quassel/quasselcore.confd +++ b/community/quassel/quasselcore.confd @@ -1,7 +1,3 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/files/quasselcore.conf,v 1.5 2010/11/04 14:22:44 scarabeus Exp $ - # Loglevel Debug|Info|Warning|Error. Default is: Info # The logfile is located at /var/log/quassel.log. #LOGLEVEL="Info" @@ -9,14 +5,22 @@ # The address(es) quasselcore will listen on. Default is 0.0.0.0 #LISTEN="0.0.0.0" +# Specify the network service that corresponds to the "bind" setting +# in your configuration file. For example, if you bind to 127.0.0.1, +# this should be set to "loopback" which provides the loopback interface. +rc_need="loopback" + # The port quasselcore will listen at. Default is: 4242 #PORT="4242" # User we want our daemon to run under. #USER="quassel" +# Group we want our daemon to run under. +#GROUP="quassel" + # Directory we store all quasselcore content. #CONFIGDIR="/var/lib/quassel" # File quasselcore will log all its events into. -#LOGFILE="/var/log/quassel.log"
\ No newline at end of file +#LOGFILE="/var/log/quassel.log" |