mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
152 lines
4.2 KiB
Bash
152 lines
4.2 KiB
Bash
#!/bin/bash
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: seafile
|
|
# Required-Start: $local_fs $remote_fs $network
|
|
# Required-Stop: $local_fs
|
|
# Default-Start: 1 2 3 4 5
|
|
# Default-Stop:
|
|
# Short-Description: Starts Seafile Server
|
|
# Description: starts Seafile Server
|
|
### END INIT INFO
|
|
|
|
echo ""
|
|
|
|
SCRIPT=$(readlink -f "$0")
|
|
INSTALLPATH=$(dirname "${SCRIPT}")
|
|
TOPDIR=$(dirname "${INSTALLPATH}")
|
|
default_ccnet_conf_dir=${TOPDIR}/ccnet
|
|
ccnet_pidfile=${INSTALLPATH}/runtime/ccnet.pid
|
|
seaf_controller="${INSTALLPATH}/seafile/bin/seafile-controller"
|
|
|
|
|
|
export PATH=${INSTALLPATH}/seafile/bin:$PATH
|
|
export ORIG_LD_LIBRARY_PATH=${LD_LIBRARY_PATH}
|
|
export SEAFILE_LD_LIBRARY_PATH=${INSTALLPATH}/seafile/lib/:${INSTALLPATH}/seafile/lib64:${LD_LIBRARY_PATH}
|
|
|
|
script_name=$0
|
|
function usage () {
|
|
echo "usage : "
|
|
echo "$(basename ${script_name}) { start | stop | restart } "
|
|
echo ""
|
|
}
|
|
|
|
# check args
|
|
if [[ $# != 1 || ( "$1" != "start" && "$1" != "stop" && "$1" != "restart" ) ]]; then
|
|
usage;
|
|
exit 1;
|
|
fi
|
|
|
|
function validate_ccnet_conf_dir () {
|
|
if [[ ! -d ${default_ccnet_conf_dir} ]]; then
|
|
echo "Error: there is no ccnet config directory."
|
|
echo "Have you run setup-seafile.sh before this?"
|
|
echo ""
|
|
exit -1;
|
|
fi
|
|
}
|
|
|
|
function read_seafile_data_dir () {
|
|
seafile_ini=${default_ccnet_conf_dir}/seafile.ini
|
|
if [[ ! -f ${seafile_ini} ]]; then
|
|
echo "${seafile_ini} not found. Now quit"
|
|
exit 1
|
|
fi
|
|
seafile_data_dir=$(cat "${seafile_ini}")
|
|
if [[ ! -d ${seafile_data_dir} ]]; then
|
|
echo "Your seafile server data directory \"${seafile_data_dir}\" is invalid or doesn't exits."
|
|
echo "Please check it first, or create this directory yourself."
|
|
echo ""
|
|
exit 1;
|
|
fi
|
|
}
|
|
|
|
function test_config() {
|
|
if ! LD_LIBRARY_PATH=$SEAFILE_LD_LIBRARY_PATH ${seaf_controller} --test -c "${default_ccnet_conf_dir}" -d "${seafile_data_dir}"; then
|
|
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-controller -c ${default_ccnet_conf_dir}" 2>/dev/null); then
|
|
echo "Seafile controller is already running, pid $pid"
|
|
echo
|
|
exit 1;
|
|
fi
|
|
|
|
check_component_running "ccnet-server" "ccnet-server -c ${default_ccnet_conf_dir}"
|
|
check_component_running "seaf-server" "seaf-server -c ${default_ccnet_conf_dir}"
|
|
check_component_running "fileserver" "fileserver -c ${default_ccnet_conf_dir}"
|
|
check_component_running "seafdav" "wsgidav.server.run_server"
|
|
}
|
|
|
|
function start_seafile_server () {
|
|
validate_already_running;
|
|
validate_ccnet_conf_dir;
|
|
read_seafile_data_dir;
|
|
test_config;
|
|
|
|
echo "Starting seafile server, please wait ..."
|
|
|
|
LD_LIBRARY_PATH=$SEAFILE_LD_LIBRARY_PATH ${seaf_controller} -c "${default_ccnet_conf_dir}" -d "${seafile_data_dir}"
|
|
|
|
sleep 3
|
|
|
|
# check if seafile server started successfully
|
|
if ! pgrep -f "seafile-controller -c ${default_ccnet_conf_dir}" 2>/dev/null 1>&2; then
|
|
echo "Failed to start seafile server"
|
|
exit 1;
|
|
fi
|
|
|
|
echo "Seafile server started"
|
|
echo
|
|
}
|
|
|
|
function stop_seafile_server () {
|
|
if ! pgrep -f "seafile-controller -c ${default_ccnet_conf_dir}" 2>/dev/null 1>&2; then
|
|
echo "seafile server not running yet"
|
|
return 1;
|
|
fi
|
|
|
|
echo "Stopping seafile server ..."
|
|
pkill -SIGTERM -f "seafile-controller -c ${default_ccnet_conf_dir}"
|
|
pkill -f "ccnet-server -c ${default_ccnet_conf_dir}"
|
|
pkill -f "seaf-server -c ${default_ccnet_conf_dir}"
|
|
pkill -f "fileserver -c ${default_ccnet_conf_dir}"
|
|
pkill -f "soffice.*--invisible --nocrashreport"
|
|
pkill -f "wsgidav.server.run_server"
|
|
return 0
|
|
}
|
|
|
|
function restart_seafile_server () {
|
|
stop_seafile_server;
|
|
sleep 2
|
|
start_seafile_server;
|
|
}
|
|
|
|
case $1 in
|
|
"start" )
|
|
start_seafile_server;
|
|
;;
|
|
"stop" )
|
|
stop_seafile_server;
|
|
;;
|
|
"restart" )
|
|
restart_seafile_server;
|
|
esac
|
|
|
|
echo "Done."
|