mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 19:50:31 -04:00
Fix the setup scripts changing the generated configuration files to the correct uid/gid. The directions were also fixed for how to start and setup seafile/seahub correctly. This should fix any confusion when setting up seafile. This also augments pkg-message with better directions for setup. PR: 217873 Submitted by: ultima1252@gmail.com (maintainer)
66 lines
2.7 KiB
Bash
66 lines
2.7 KiB
Bash
--- scripts/setup-seafile.sh.orig 2017-03-13 02:59:56 UTC
|
|
+++ scripts/setup-seafile.sh
|
|
@@ -15,6 +15,8 @@ use_existing_seafile="false"
|
|
|
|
server_manual_http="https://github.com/haiwen/seafile/wiki"
|
|
|
|
+os_bsd=$(uname | grep -cm1 -e BSD -e DragonFly)
|
|
+
|
|
function welcome () {
|
|
echo "-----------------------------------------------------------------"
|
|
echo "This script will guide you to config and setup your seafile server."
|
|
@@ -318,10 +320,17 @@ fi
|
|
}
|
|
|
|
function copy_user_manuals() {
|
|
- src_docs_dir=${INSTALLPATH}/seafile/docs/
|
|
+ if [ $os_bsd == "1" ]; then
|
|
+ src_docs_dir=${INSTALLPATH}/seafile/share/doc/seafile/
|
|
+ else
|
|
+ src_docs_dir=${INSTALLPATH}/seafile/docs/
|
|
+ fi
|
|
library_template_dir=${seafile_data_dir}/library-template
|
|
mkdir -p ${library_template_dir}
|
|
cp -f ${src_docs_dir}/*.doc ${library_template_dir}
|
|
+ if [ $os_bsd == "1" ]; then
|
|
+ chown -R %%SEAFILE_USER%%:%%SEAFILE_GROUP%% "${library_template_dir}"
|
|
+ fi
|
|
}
|
|
|
|
function parse_params() {
|
|
@@ -673,6 +682,13 @@ chmod 0600 "$dest_settings_py"
|
|
chmod 0700 "$default_ccnet_conf_dir"
|
|
chmod 0700 "$seafile_data_dir"
|
|
chmod 0700 "$default_conf_dir"
|
|
+if [ $os_bsd == "1" ]; then
|
|
+ chown %%SEAFILE_USER%%:%%SEAFILE_GROUP%% "$dest_settings_py"
|
|
+ chown %%SEAFILE_USER%%:%%SEAFILE_GROUP%% "$default_ccnet_conf_dir"
|
|
+ chown -R %%SEAFILE_USER%%:%%SEAFILE_GROUP%% "$seafile_data_dir"
|
|
+ chown %%SEAFILE_USER%%:%%SEAFILE_GROUP%% "$default_conf_dir"
|
|
+ chown %%SEAFILE_USER%%:%%SEAFILE_GROUP%% "$seahub_db"
|
|
+fi
|
|
|
|
# -------------------------------------------
|
|
# copy user manuals to library template
|
|
@@ -689,9 +705,18 @@ echo
|
|
echo "-----------------------------------------------------------------"
|
|
echo "Your seafile server configuration has been completed successfully."
|
|
echo "-----------------------------------------------------------------"
|
|
-echo
|
|
-echo "run seafile server: ./seafile.sh { start | stop | restart }"
|
|
-echo "run seahub server: ./seahub.sh { start <port> | stop | restart <port> }"
|
|
+echo
|
|
+if [ $os_bsd == "1" ]; then
|
|
+ echo "run seafile server: sysrc seafile_enable=YES"
|
|
+ echo " service seafile { start | stop | restart }"
|
|
+ echo "run seahub server: sysrc seahub_enable=YES"
|
|
+ echo "fastcgi (optional): sysrc seahub_fastcgi=1"
|
|
+ echo " service seahub { start | stop | restart }"
|
|
+ echo "run reset-admin: ./reset-admin.sh"
|
|
+else
|
|
+ echo "run seafile server: ./seafile.sh { start | stop | restart }"
|
|
+ echo "run seahub server: ./seahub.sh { start <port> | stop | restart <port> }"
|
|
+fi
|
|
echo
|
|
echo "-----------------------------------------------------------------"
|
|
echo "If the server is behind a firewall, remember to open these tcp ports:"
|