diff options
author | Marcel Saegebarth <marc@mos6581.de> | 2015-02-07 04:58:45 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-02-07 04:59:40 +0700 |
commit | 7ddb2deab96fb0268e0229116d558f886da6b3b9 (patch) | |
tree | 8086a47f1e427e4286a71817f94da6dc90399c38 /network/seafile-server/seafile | |
parent | bab028ad4d2c83ea3bab224a5822f6be2beffc27 (diff) | |
download | slackbuilds-7ddb2deab96fb0268e0229116d558f886da6b3b9.tar.gz |
network/seafile-server: Added (Cloud Storage System).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/seafile-server/seafile')
-rw-r--r-- | network/seafile-server/seafile | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/network/seafile-server/seafile b/network/seafile-server/seafile new file mode 100644 index 0000000000..0454531932 --- /dev/null +++ b/network/seafile-server/seafile @@ -0,0 +1,62 @@ +#!/bin/sh + +# Simple `seafile-admin` wrapper script. + +# Copyright 2015 Marcel Saegebarth <marc@mos6581.de> +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +WORKING_DIR=${WORKING_DIR:-/opt/haiwen} +PYTHONPATH=$WORKING_DIR/seafile-server/seahub/thirdpart:$PYTHONPATH +PATH=$PYTHONPATH:$PATH +SEAFILEUSER=seafile + +set -e + +execute () { + su -s /bin/sh -l $SEAFILEUSER -c "export PYTHONPATH=$PYTHONPATH PATH=$PATH && cd $WORKING_DIR && seafile-admin $1" +} + +case "$1" in + start) + execute start + ;; + stop) + execute stop + ;; + setup) + execute setup + ;; + restart) + execute stop && execute start + ;; + reset-admin) + execute reset-admin + ;; + create-admin) + execute create-admin + ;; + *) + cat << EOF +Usage: seafile start|stop|restart|setup|create-admin|reset-admin +EOF + ;; +esac |