seafile_ynh/scripts/install

134 lines
4.8 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2020-11-17 23:49:06 +01:00
# Import common cmd
source ./experimental_helper.sh
source ./_common.sh
2017-07-21 14:56:41 +02:00
# Source YunoHost helpers
source /usr/share/yunohost/helpers
2020-12-14 16:35:22 +01:00
seafile_version=$(ynh_app_upstream_version)
# Create special path with / at the end
2023-08-08 23:21:11 +02:00
if [[ $path == '/' ]]
then
2023-08-08 23:21:11 +02:00
path2=$path
else
2023-08-08 23:21:11 +02:00
path2=$path"/"
fi
#=================================================
# STANDARD MODIFICATIONS
#=================================================
2020-03-27 13:25:40 +01:00
ynh_script_progression --message="Creating base directory..."
2023-08-08 23:21:11 +02:00
ln -s $data_dir $install_dir/seafile-data
2019-05-07 21:52:43 +02:00
2023-11-24 11:58:13 +01:00
if [ -n "$(ls -A $data_dir)" ]; then
old_data_dir_path="${data_dir}_$(date '+%Y%m%d.%H%M%S')"
ynh_print_warn "Data directory was not empty. Data was moved to $old_data_dir_path"
mkdir -p $old_data_dir_path
mv -t "$old_data_dir_path" "$data_dir"/*
fi
2018-01-19 20:55:44 +01:00
# Download new version from sources
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Installing sources files..." --weight=7
2023-08-08 23:21:11 +02:00
ynh_setup_source --dest_dir=$install_dir/seafile-server-$seafile_version
2023-10-04 07:54:30 +02:00
ynh_script_progression --message="Installing python dependancies..."
install_dependance
# init databases
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Configuring MySQL database..."
db_user=seafile
db_helper=ynh_"mysql"_setup_db
2023-09-27 20:13:07 +02:00
$db_helper --db_user $db_user --db_name ccnetdb --db_pwd "$db_pwd"
$db_helper --db_user $db_user --db_name seahubdb --db_pwd "$db_pwd"
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Configuring application..." --weight=3
# Run install script
2022-11-01 12:23:47 +01:00
set_permission
2023-11-24 12:45:03 +01:00
ynh_replace_special_string --match_string 'seafile_config.seafile_dir = seafile_config.validate_seafile_dir(seafile_dir)' \
--replace_string 'seafile_config.seafile_dir = seafile_dir' \
--target_file $install_dir/seafile-server-$seafile_version/setup-seafile-mysql.py
2023-11-24 10:59:10 +01:00
sudo -u $YNH_APP_ID bash $install_dir/seafile-server-$seafile_version/setup-seafile-mysql.sh auto \
--server-name "$server_name" \
--server-ip $domain \
--fileserver-port $port_fileserver \
2023-11-24 12:45:03 +01:00
--use-existing-db 1 \
2023-11-24 10:59:10 +01:00
--mysql-host localhost \
--mysql-port 3306 \
--mysql-user $db_user \
--mysql-user-passwd "$db_pwd" \
--seafile-db "$db_name" \
2023-11-24 12:45:03 +01:00
--ccnet-db ccnetdb \
2023-11-24 10:59:10 +01:00
--seahub-db seahubdb
2020-09-29 22:38:08 +02:00
2023-08-08 23:21:11 +02:00
# Retrive values from auto generated config file
seahub_secret_key=$(grep -P 'SECRET_KEY\s*=\s*".+"' $install_dir/conf/seahub_settings.py | cut -d'"' -f2)
2023-08-08 23:21:11 +02:00
ynh_app_setting_set --app $app --key seahub_secret_key --value $seahub_secret_key
# Update seafile config files
ynh_add_config --template=seahub_settings.py --destination=$install_dir/conf/seahub_settings.py
ynh_add_config --template=seafile.conf --destination=$install_dir/conf/seafile.conf
2023-08-08 23:21:11 +02:00
ynh_add_config --template=ccnet.conf --destination=$install_dir/conf/ccnet.conf
ynh_add_config --template=gunicorn.conf.py --destination=$install_dir/conf/gunicorn.conf.py
ynh_add_config --template=seafdav.conf --destination=$install_dir/conf/seafdav.conf
# Configure admin info
# It will be used the first start
admin_email=$(ynh_user_get_info --username $admin --key 'mail')
2023-08-08 23:21:11 +02:00
cp ../conf/create_admin.json $install_dir/conf/admin.txt
ynh_replace_string --match_string __ADMIN__ --replace_string $admin_email --target_file $install_dir/conf/admin.txt
ynh_replace_special_string --match_string __PASSWORD__ --replace_string $admin_password --target_file $install_dir/conf/admin.txt
2017-07-21 14:56:41 +02:00
# Fix local warning
2023-08-08 23:21:11 +02:00
ynh_replace_string --match_string en_US.UTF-8 --replace_string ${LANG:-'en_US.UTF-8'} --target_file $install_dir/seafile-server-$seafile_version/seahub.sh
2017-07-21 14:56:41 +02:00
# Add Seafile Server to startup
ynh_script_progression --message="Configuring a systemd service..."
2019-06-11 22:28:26 +02:00
ynh_add_systemd_config --service seafile --template seafile.service
ynh_add_systemd_config --service seahub --template seahub.service
2017-07-21 14:56:41 +02:00
# register yunohost service
yunohost service add seafile
yunohost service add seahub
2017-07-21 14:56:41 +02:00
# Config nginx
ynh_script_progression --message="Configuring nginx..."
ynh_add_nginx_config
# Add logrotate
ynh_script_progression --message="Configuring log rotation..."
ynh_use_logrotate --logfile $install_dir/logs
ln -s $install_dir/logs /var/log/seafile
# Add fail2ban
ynh_script_progression --message="Configuring fail2ban..."
touch $install_dir/logs/seahub.log
ynh_add_fail2ban_config --use_template
#=================================================
# GENERIC FINALIZATION
#=================================================
2019-06-11 22:28:26 +02:00
# Set all permissions
ynh_script_progression --message="Protecting directory..."
set_permission
# Start service
sleep 3
ynh_script_progression --message="Starting seafile services..."
ynh_systemd_action --service_name seafile -l "spawned seaf-server, pid " -p /var/log/seafile/controller.log
sleep 2
ynh_systemd_action --service_name seahub -l "Started Seafile hub." -p "systemd"
sleep 2
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Installation of $app completed" --last