mirror of
https://github.com/haiwen/seahub.git
synced 2025-04-27 19:05:16 +00:00
91 lines
2.1 KiB
Bash
Executable File
91 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo ""
|
|
|
|
SCRIPT=$(readlink -f "$0")
|
|
INSTALLPATH=$(dirname "${SCRIPT}")
|
|
TOPDIR=$(dirname "${INSTALLPATH}")
|
|
default_seafile_data_dir=${TOPDIR}/seafile-data
|
|
default_conf_dir=${TOPDIR}/conf
|
|
seaf_encrypt=${INSTALLPATH}/seafile/bin/seaf-encrypt
|
|
seaf_encrypt_opts=""
|
|
|
|
export PATH=${INSTALLPATH}/seafile/bin:$PATH
|
|
export SEAFILE_LD_LIBRARY_PATH=${INSTALLPATH}/seafile/lib/:${INSTALLPATH}/seafile/lib64:${LD_LIBRARY_PATH}
|
|
|
|
script_name=$0
|
|
function usage () {
|
|
echo "usage : "
|
|
echo -e "$(basename ${script_name}) \n" \
|
|
"-f <seafile enc central config dir, must set>\n" \
|
|
"-e <seafile enc data dir, must set>"
|
|
echo ""
|
|
}
|
|
|
|
function validate_seafile_data_dir () {
|
|
if [[ ! -d ${default_seafile_data_dir} ]]; then
|
|
echo "Error: there is no seafile server data directory."
|
|
echo "Have you run setup-seafile.sh before this?"
|
|
echo ""
|
|
exit 1;
|
|
fi
|
|
}
|
|
|
|
function check_component_running() {
|
|
name=$1
|
|
cmd=$2
|
|
if pid=$(pgrep -f "$cmd" 2>/dev/null); then
|
|
echo "[$name] is running, pid $pid. You can stop it by: "
|
|
echo
|
|
echo " kill $pid"
|
|
echo
|
|
echo "Stop it and try again."
|
|
echo
|
|
exit
|
|
fi
|
|
}
|
|
|
|
function validate_already_running () {
|
|
if pid=$(pgrep -f "seafile-monitor.sh" 2>/dev/null); then
|
|
echo "seafile server is still running, stop it by \"seafile.sh stop\""
|
|
echo
|
|
exit 1;
|
|
fi
|
|
|
|
check_component_running "seaf-server" "seaf-server"
|
|
check_component_running "seafdav" "wsgidav.server.server_cli"
|
|
}
|
|
|
|
function run_seaf_encrypt () {
|
|
validate_seafile_data_dir;
|
|
|
|
validate_already_running;
|
|
|
|
echo "Starting seaf-encrypt, please wait ..."
|
|
|
|
LD_LIBRARY_PATH=$SEAFILE_LD_LIBRARY_PATH ${seaf_encrypt} \
|
|
-c "${default_conf_dir}" \
|
|
-d "${default_seafile_data_dir}" \
|
|
${seaf_encrypt_opts}
|
|
|
|
echo "seaf-encrypt run done"
|
|
echo
|
|
}
|
|
|
|
if [ $# -gt 0 ];
|
|
then
|
|
for param in $@;
|
|
do
|
|
if [ ${param} = "-h" -o ${param} = "--help" ];
|
|
then
|
|
usage;
|
|
exit 1;
|
|
fi
|
|
done
|
|
fi
|
|
|
|
seaf_encrypt_opts=$@
|
|
run_seaf_encrypt;
|
|
|
|
echo "Done."
|