You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
325 B
11 lines
325 B
13 years ago
|
#!/bin/sh
|
||
|
|
||
|
status=$(/sbin/e-smith/config getprop ejabberd status)
|
||
|
if [ "$status" = "disabled" ]
|
||
|
then
|
||
|
echo "ejabberd is disabled - no tables dumped" >&2
|
||
|
exit 0
|
||
|
fi
|
||
|
mkdir -p /home/e-smith/db/ejabberd
|
||
|
chown ejabberd.root /home/e-smith/db/ejabberd
|
||
|
/sbin/e-smith/ejabberdctl backup /home/e-smith/db/ejabberd/ejabberd.backup
|