mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
* src/ejabberdctl.template: Updated version of ejabberdctl (thanks
to Christophe Romain) * tools/ejabberdctl: Likewise * src/Makefile.in: Updated SVN Revision: 773
This commit is contained in:
parent
9a6e8e3c55
commit
c9e139d80a
@ -1,5 +1,10 @@
|
|||||||
2007-05-21 Alexey Shchepin <alexey@sevcom.net>
|
2007-05-21 Alexey Shchepin <alexey@sevcom.net>
|
||||||
|
|
||||||
|
* src/ejabberdctl.template: Updated version of ejabberdctl (thanks
|
||||||
|
to Christophe Romain)
|
||||||
|
* tools/ejabberdctl: Likewise
|
||||||
|
* src/Makefile.in: Updated
|
||||||
|
|
||||||
* src/ejabberd_sm.erl: Updated the session table to store
|
* src/ejabberd_sm.erl: Updated the session table to store
|
||||||
additional session info
|
additional session info
|
||||||
* src/ejabberd_c2s.erl: Report IP address to ejabberd_sm (thanks
|
* src/ejabberd_c2s.erl: Report IP address to ejabberd_sm (thanks
|
||||||
|
@ -90,6 +90,8 @@ install: all
|
|||||||
install -m 644 msgs/*.msg $(MSGSDIR)
|
install -m 644 msgs/*.msg $(MSGSDIR)
|
||||||
install -d $(ETCDIR)
|
install -d $(ETCDIR)
|
||||||
[ -f $(ETCDIR)/ejabberd.cfg ] && install -b -m 644 ejabberd.cfg.example $(ETCDIR)/ejabberd.cfg-new || install -b -m 644 ejabberd.cfg.example $(ETCDIR)/ejabberd.cfg
|
[ -f $(ETCDIR)/ejabberd.cfg ] && install -b -m 644 ejabberd.cfg.example $(ETCDIR)/ejabberd.cfg-new || install -b -m 644 ejabberd.cfg.example $(ETCDIR)/ejabberd.cfg
|
||||||
|
sed -e "s*@rootdir@*@prefix@*" ejabberdctl.template > ejabberdctl.example
|
||||||
|
install -m 755 ejabberdctl.example $(DESTDIR)@prefix@/usr/sbin/ejabberdctl
|
||||||
install -d $(LOGDIR)
|
install -d $(LOGDIR)
|
||||||
|
|
||||||
clean: clean-recursive clean-local
|
clean: clean-recursive clean-local
|
||||||
|
62
src/ejabberdctl.template
Normal file
62
src/ejabberdctl.template
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
NODE=ejabberd
|
||||||
|
HOST=localhost
|
||||||
|
|
||||||
|
# Define ejabberd environment
|
||||||
|
ROOTDIR=@prefix@
|
||||||
|
SASL_LOG_PATH=$ROOTDIR/var/log/ejabberd/sasl.log
|
||||||
|
EJABBERD_DB=$ROOTDIR/var/lib/ejabberd/db/$NODE
|
||||||
|
export EJABBERD_LOG_PATH=$ROOTDIR/var/log/ejabberd/ejabberd.log
|
||||||
|
export EJABBERD_CONFIG_PATH=$ROOTDIR/etc/ejabberd/ejabberd.cfg
|
||||||
|
export EJABBERD_MSGS_PATH=$ROOTDIR/var/lib/ejabberd/priv/msgs
|
||||||
|
export EJABBERD_SO_PATH=$ROOTDIR/var/lib/ejabberd/priv/lib
|
||||||
|
export ERL_MAX_PORTS=32000
|
||||||
|
|
||||||
|
[ -d $EJABBERD_DB ] || mkdir -p $EJABBERD_DB
|
||||||
|
|
||||||
|
function start
|
||||||
|
{
|
||||||
|
erl \
|
||||||
|
-noinput -detached \
|
||||||
|
-sname $NODE@$HOST \
|
||||||
|
-pa $ROOTDIR/src \
|
||||||
|
-mnesia dir "\"$EJABBERD_DB\"" \
|
||||||
|
-s ejabberd \
|
||||||
|
-ejabberd config \"$EJABBERD_CONFIG_PATH\" \
|
||||||
|
log_path \"$EJABBERD_LOG_PATH\" \
|
||||||
|
-sasl sasl_error_logger \{file,\"$SASL_LOG_PATH\"\}
|
||||||
|
}
|
||||||
|
|
||||||
|
function debug
|
||||||
|
{
|
||||||
|
erl \
|
||||||
|
-sname debug$NODE@$HOST \
|
||||||
|
-pa $ROOTDIR/src \
|
||||||
|
-mnesia dir "\"$EJABBERD_DB\"" \
|
||||||
|
-remsh $NODE@$HOST
|
||||||
|
}
|
||||||
|
|
||||||
|
function ctl
|
||||||
|
{
|
||||||
|
erl \
|
||||||
|
-noinput \
|
||||||
|
-sname ejabberdctl@$HOST \
|
||||||
|
-pa $ROOTDIR/src \
|
||||||
|
-s ejabberd_ctl -extra $NODE@$HOST $@
|
||||||
|
}
|
||||||
|
|
||||||
|
function usage
|
||||||
|
{
|
||||||
|
ctl
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
[ $# -lt 1 ] && usage
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
start) start;;
|
||||||
|
debug) debug;;
|
||||||
|
*) ctl $@;;
|
||||||
|
esac
|
||||||
|
|
@ -1,4 +1,64 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
exec erl -noinput -sname ejabberdctl -s ejabberd_ctl -extra $@
|
NODE=ejabberd
|
||||||
|
HOST=localhost
|
||||||
|
|
||||||
|
# Define ejabberd environment
|
||||||
|
base="`dirname $(which "$0")`/.."
|
||||||
|
ROOTDIR=`(cd "$base"; echo $PWD)`
|
||||||
|
SASL_LOG_PATH=$ROOTDIR/sasl.log
|
||||||
|
EJABBERD_DB=$ROOTDIR/database/$NODE
|
||||||
|
export EJABBERD_LOG_PATH=$ROOTDIR/ejabberd.log
|
||||||
|
export EJABBERD_CONFIG_PATH=$ROOTDIR/ejabberd.cfg
|
||||||
|
export EJABBERD_MSGS_PATH=$ROOTDIR/src/msgs
|
||||||
|
export EJABBERD_SO_PATH=$ROOTDIR/src
|
||||||
|
export ERL_MAX_PORTS=32000
|
||||||
|
|
||||||
|
[ -d $EJABBERD_DB ] || mkdir -p $EJABBERD_DB
|
||||||
|
[ -f $EJABBERD_CONFIG_PATH ] || cp $ROOTDIR/src/ejabberd.cfg.example $EJABBERD_CONFIG_PATH
|
||||||
|
|
||||||
|
function start
|
||||||
|
{
|
||||||
|
erl \
|
||||||
|
-noinput -detached \
|
||||||
|
-sname $NODE@$HOST \
|
||||||
|
-pa $ROOTDIR/src \
|
||||||
|
-mnesia dir "\"$EJABBERD_DB\"" \
|
||||||
|
-s ejabberd \
|
||||||
|
-ejabberd config \"$EJABBERD_CONFIG_PATH\" \
|
||||||
|
log_path \"$EJABBERD_LOG_PATH\" \
|
||||||
|
-sasl sasl_error_logger \{file,\"$SASL_LOG_PATH\"\}
|
||||||
|
}
|
||||||
|
|
||||||
|
function debug
|
||||||
|
{
|
||||||
|
erl \
|
||||||
|
-sname debug$NODE@$HOST \
|
||||||
|
-pa $ROOTDIR/src \
|
||||||
|
-mnesia dir "\"$EJABBERD_DB\"" \
|
||||||
|
-remsh $NODE@$HOST
|
||||||
|
}
|
||||||
|
|
||||||
|
function ctl
|
||||||
|
{
|
||||||
|
erl \
|
||||||
|
-noinput \
|
||||||
|
-sname ejabberdctl@$HOST \
|
||||||
|
-pa $ROOTDIR/src \
|
||||||
|
-s ejabberd_ctl -extra $NODE@$HOST $@
|
||||||
|
}
|
||||||
|
|
||||||
|
function usage
|
||||||
|
{
|
||||||
|
ctl
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
[ $# -lt 1 ] && usage
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
start) start;;
|
||||||
|
debug) debug;;
|
||||||
|
*) ctl $@;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user