packages: znc: don't start with default config
Don't connect to freenode if there is only the default configuration. Signed-off-by: Jonas Gorski <jogo@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/packages@34658 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7bb67f087d
commit
d37b83b518
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=znc
|
||||
PKG_VERSION:=0.206
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://znc.in/releases \
|
||||
|
@ -7,6 +7,9 @@ config znc
|
||||
# load global modules (You need to install them first):
|
||||
# list module 'fail2ban'
|
||||
|
||||
# remove this to enable the service
|
||||
option disabled 1
|
||||
|
||||
config user 'sampleUser'
|
||||
# Use either a plain text password or use the full sha256#... line.
|
||||
# You can generate one with 'znc -s'.
|
||||
@ -20,7 +23,7 @@ config user 'sampleUser'
|
||||
# list channel '#chan optional_password'
|
||||
|
||||
# list of allowed servers:
|
||||
list server 'chat.freenode.net 6667'
|
||||
# list server 'chat.freenode.net 6667'
|
||||
|
||||
# load user modules ('<module> [params...]'):
|
||||
# list module 'simple_away -timer 10 disconnected'
|
||||
|
@ -8,6 +8,7 @@ PID_FILE=${ZNC_CONFIG_PATH}/znc.pid
|
||||
ZNC_CONFIG=${ZNC_CONFIG_PATH}/configs/znc.conf
|
||||
|
||||
EXTERNAL_CONFIG=0
|
||||
DISABLED=
|
||||
|
||||
RUNAS_USER=
|
||||
RUNAS_GROUP=
|
||||
@ -33,6 +34,10 @@ znc_global() {
|
||||
local znc_config_path
|
||||
local znc_pem_file
|
||||
|
||||
config_get_bool DISABLED "$znc" disabled 0
|
||||
|
||||
[ "$DISABLED" -eq 0 ] || return 0
|
||||
|
||||
config_get znc_config_path "$znc" znc_config_path
|
||||
|
||||
config_get RUNAS_USER "$znc" runas_user
|
||||
@ -122,6 +127,10 @@ start() {
|
||||
config_load znc
|
||||
config_foreach znc_global znc
|
||||
|
||||
if [ "$DISABLED" -eq 1 ]; then
|
||||
return 0
|
||||
fi
|
||||
|
||||
if [ "$EXTERNAL_CONFIG" -eq 0 ]
|
||||
then
|
||||
config_foreach add_listener listener
|
||||
|
Loading…
x
Reference in New Issue
Block a user