seafile-containerized/cluster/image/pro_seafile_7.1/scripts_7.1/start.sh

19 lines
270 B
Bash
Raw Normal View History

2020-07-13 10:14:54 +00:00
#!/bin/bash
function start-front-end() {
python /scripts/start.py
}
function start-back-end() {
python /scripts/start.py --mode backend
}
case $1 in
"front-end" )
start-front-end
;;
"back-end" )
start-back-end
;;
esac