mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
74 lines
2.3 KiB
Bash
74 lines
2.3 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
|
|
# Import common cmd
|
|
source ../settings/scripts/experimental_helper.sh
|
|
source ../settings/scripts/_common.sh
|
|
|
|
# Source YunoHost helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
seafile_version="$(ynh_app_upstream_version)"
|
|
seafile_code="$install_dir/seafile_image/opt/seafile/seafile-server-$seafile_version"
|
|
|
|
ynh_script_progression "Loading settings..."
|
|
|
|
#=================================================
|
|
# STANDARD RESTORATION STEPS
|
|
#=================================================
|
|
|
|
# Restore all config and data
|
|
ynh_script_progression "Restoring files..."
|
|
ynh_restore_everything
|
|
# Restore mysql dump
|
|
ynh_script_progression "Restoring database..."
|
|
db_helper=ynh_"mysql"_setup_db
|
|
$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"
|
|
su -c "mysql -u ${app} -p$db_pwd $db_name < ${YNH_CWD}/seafiledb.dmp"
|
|
su -c "mysql -u ${app} -p$db_pwd ccnetdb < ${YNH_CWD}/ccnetdb.dmp"
|
|
su -c "mysql -u ${app} -p$db_pwd seahubdb < ${YNH_CWD}/seahubdb.dmp"
|
|
|
|
#=================================================
|
|
|
|
# Add logrotate
|
|
ynh_script_progression "Configuring log rotation..."
|
|
mkdir -p /var/log/"$app"
|
|
ynh_config_add_logrotate "$install_dir"/logs
|
|
|
|
# Set all permissions
|
|
ynh_script_progression "Protecting directory..."
|
|
set_permission
|
|
|
|
# Enable service and start seafile
|
|
ynh_script_progression "Reconfiguring application..."
|
|
systemctl daemon-reload
|
|
systemctl enable seafile --quiet
|
|
systemctl enable seahub --quiet
|
|
|
|
# Add Seafile to YunoHost's monitored services
|
|
ynh_script_progression "Register seafile service..."
|
|
yunohost service add seafile --description 'Main service for seafile server.'
|
|
yunohost service add seahub --description 'Seafile server web interface.'
|
|
|
|
ynh_script_progression "Reloading services..."
|
|
|
|
# Reload nginx
|
|
systemctl reload nginx.service
|
|
|
|
# Reload fail2ban
|
|
ynh_systemctl --service=fail2ban --action=reload
|
|
|
|
# Avoid the current effect
|
|
sleep 5
|
|
|
|
# Restart service
|
|
ynh_script_progression "Starting seafile services..."
|
|
ynh_systemctl --service=seafile -l "spawned seaf-server, pid " -p /var/log/seafile/controller.log
|
|
ynh_systemctl --service=seahub -l "Started Seafile hub." -p "systemd"
|
|
sleep 2
|
|
|
|
ynh_script_progression "Restoration completed for $app"
|