2015-03-25 19:14:18 +01:00
|
|
|
#!/bin/bash
|
2015-10-28 16:04:51 +01:00
|
|
|
|
2017-07-21 14:56:41 +02:00
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Stop script if errors
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-01-05 23:24:32 +01:00
|
|
|
# Import common cmd
|
|
|
|
source ./_common.sh
|
|
|
|
|
2017-07-21 14:56:41 +02:00
|
|
|
# Init get Final path
|
|
|
|
get_configuration
|
2015-03-25 19:14:18 +01:00
|
|
|
|
2017-07-21 14:56:41 +02:00
|
|
|
# Retrieve arguments
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path=$(ynh_normalize_url_path $(ynh_app_setting_get $app path))
|
2016-12-27 10:44:40 +01:00
|
|
|
installed_version=$(ynh_app_setting_get $app installed_version)
|
2017-07-21 14:56:41 +02:00
|
|
|
root_pwd=$(cat /etc/yunohost/mysql)
|
2016-12-27 10:44:40 +01:00
|
|
|
|
2017-07-21 14:56:41 +02:00
|
|
|
# Get configuration for user and final path
|
|
|
|
get_configuration
|
2016-12-27 10:44:40 +01:00
|
|
|
|
|
|
|
# Download new version from sources
|
|
|
|
get_source $architecture $seafile_version
|
2015-03-25 19:14:18 +01:00
|
|
|
|
2017-01-05 23:24:32 +01:00
|
|
|
# stop seafile server
|
2017-07-21 14:56:41 +02:00
|
|
|
systemctl stop seafile-server.service
|
2017-01-05 23:24:32 +01:00
|
|
|
|
2015-03-25 19:14:18 +01:00
|
|
|
# extract new version
|
2017-07-21 14:56:41 +02:00
|
|
|
test -e $final_path/seafile-server-$seafile_version && rm -rf "$final_path/seafile-server-$seafile_version"
|
|
|
|
extract_source
|
2015-03-25 19:14:18 +01:00
|
|
|
|
|
|
|
# permission to execute update script and expect helper
|
2017-07-21 14:56:41 +02:00
|
|
|
chmod +x ../conf/upgrade_*.exp
|
|
|
|
chmod +x ../conf/minor-upgrade.exp
|
|
|
|
chmod +x $final_path/seafile-server-$seafile_version/upgrade/upgrade_*.sh
|
|
|
|
chmod +x $final_path/seafile-server-$seafile_version/upgrade/minor-upgrade.sh
|
2017-05-05 15:43:32 +02:00
|
|
|
|
|
|
|
# do the upgrade ( the ";&" syntax mean when it go in the frist cas how are true it do the next case)
|
2015-08-24 20:45:36 +02:00
|
|
|
case $installed_version in
|
|
|
|
"4.0."* )
|
|
|
|
# Update seafile by script
|
2017-07-21 14:56:41 +02:00
|
|
|
../conf/upgrade_4.1.1.exp $final_path/seafile-server-$seafile_version $root_pwd
|
2017-05-05 15:43:32 +02:00
|
|
|
;&
|
2015-08-24 20:45:36 +02:00
|
|
|
"4.1."* )
|
|
|
|
# Update seafile by script
|
2017-07-21 14:56:41 +02:00
|
|
|
../conf/upgrade_4.2.1.exp $final_path/seafile-server-$seafile_version $root_pwd
|
2017-05-05 15:43:32 +02:00
|
|
|
;&
|
2015-10-22 22:38:59 +02:00
|
|
|
"4.3."* )
|
|
|
|
# Update seafile by script
|
2017-07-21 14:56:41 +02:00
|
|
|
../conf/upgrade_4.4.3.exp $final_path/seafile-server-$seafile_version $root_pwd
|
2017-05-05 15:43:32 +02:00
|
|
|
;&
|
2015-12-26 13:44:45 +01:00
|
|
|
"4.4."* )
|
|
|
|
# Update seafile by script
|
2017-07-21 14:56:41 +02:00
|
|
|
../conf/upgrade_5.0.3.exp $final_path/seafile-server-$seafile_version $root_pwd
|
2017-05-05 15:43:32 +02:00
|
|
|
;&
|
2016-12-27 10:44:40 +01:00
|
|
|
"5.0."* )
|
|
|
|
# Update seafile by script
|
2017-07-21 14:56:41 +02:00
|
|
|
../conf/upgrade_5.1.exp $final_path/seafile-server-$seafile_version $root_pwd
|
2017-05-05 15:43:32 +02:00
|
|
|
;&
|
2016-12-27 10:44:40 +01:00
|
|
|
"5.1."* )
|
|
|
|
# Update seafile by script
|
2017-07-21 14:56:41 +02:00
|
|
|
../conf/upgrade_6.0.exp $final_path/seafile-server-$seafile_version $root_pwd
|
|
|
|
;&
|
|
|
|
"6.0."* )
|
|
|
|
python ../conf/update_sso_conf.py
|
|
|
|
install_dependance
|
|
|
|
|
|
|
|
# Update seafile by script
|
|
|
|
../conf/upgrade_6.1.exp $final_path/seafile-server-$seafile_version $root_pwd
|
2017-05-05 15:43:32 +02:00
|
|
|
;&
|
2015-08-24 20:45:36 +02:00
|
|
|
esac
|
|
|
|
|
2017-07-21 14:56:41 +02:00
|
|
|
../conf/minor-upgrade.exp $final_path/seafile-server-$seafile_version $root_pwd
|
2017-05-05 15:43:32 +02:00
|
|
|
|
2015-08-24 20:45:36 +02:00
|
|
|
## Install webdav and logrotate if not installed
|
|
|
|
if [[ $installed_version = "4.0."* ]] || [[ $installed_version = "4.1."* ]]
|
|
|
|
then
|
2017-07-21 14:56:41 +02:00
|
|
|
webdav_port=$(ynh_find_port 8080)
|
2016-12-27 10:44:40 +01:00
|
|
|
ynh_app_setting_set seafile webdav_port $webdav_port
|
2015-08-24 20:45:36 +02:00
|
|
|
|
|
|
|
# Disallow port that was used by old seafile client
|
2016-12-27 10:44:40 +01:00
|
|
|
ccnet_port=$(ynh_app_setting_get $app ccnet_port)
|
|
|
|
seafile_port=$(ynh_app_setting_get $app seafile_port)
|
2017-07-21 14:56:41 +02:00
|
|
|
yunohost firewall disallow Both $ccnet_port
|
|
|
|
yunohost firewall disallow Both $seafile_port
|
2015-08-24 20:45:36 +02:00
|
|
|
|
|
|
|
# Add webdav to nginx config
|
2017-07-21 14:56:41 +02:00
|
|
|
ynh_replace_string WEBDAV_PORT $webdav_port ../conf/nginx_add_webdav
|
|
|
|
echo $(cat ../conf/nginx_add_webdav) | tee -a /etc/nginx/conf.d/$domain.d/seafile.conf
|
2015-08-24 20:45:36 +02:00
|
|
|
|
|
|
|
# Add webdav config
|
2017-07-21 14:56:41 +02:00
|
|
|
cp ../conf/seafdav.conf $final_path/conf/seafdav.conf
|
|
|
|
ynh_replace_string WEBDAV_PORT $webdav_port $final_path/conf/seafdav.conf
|
2015-08-24 20:45:36 +02:00
|
|
|
|
|
|
|
# Add sso config to unprotect domain.tld/seafdav in /etc/ssowat/conf.json.persistent
|
2017-07-21 14:56:41 +02:00
|
|
|
cp ../conf/add_sso_conf.py $final_path
|
|
|
|
cp ../conf/add_sso_conf_webdav.py $final_path
|
|
|
|
cp ../conf/remove_sso_conf.py $final_path
|
|
|
|
python $final_path/add_sso_conf_webdav.py
|
2015-08-24 20:45:36 +02:00
|
|
|
|
|
|
|
# Update seafile config
|
2017-07-21 14:56:41 +02:00
|
|
|
echo 'COMPRESS_URL = MEDIA_URL' | tee -a $final_path/conf/seahub_settings.py
|
|
|
|
echo "STATIC_URL = MEDIA_URL + 'assets/'" | tee -a $final_path/conf/seahub_settings.py
|
2015-08-24 20:45:36 +02:00
|
|
|
|
|
|
|
# Add logrotate
|
2017-07-21 14:56:41 +02:00
|
|
|
ynh_use_logrotate $final_path/logs/seaf-server.log
|
|
|
|
ynh_use_logrotate $final_path/logs/ccnet.log
|
2015-08-24 20:45:36 +02:00
|
|
|
fi
|
2015-03-25 19:14:18 +01:00
|
|
|
|
2017-01-05 23:24:32 +01:00
|
|
|
# Update seahub config for old version to version 5.0.4
|
2017-07-21 14:56:41 +02:00
|
|
|
if [[ $(grep -c "LOGIN_URL" $final_path/conf/seahub_settings.py) == 0 ]]
|
2017-01-05 23:24:32 +01:00
|
|
|
then
|
2017-07-21 14:56:41 +02:00
|
|
|
echo "LOGIN_URL = '"$path"/accounts/login/'" | tee -a $final_path/conf/seahub_settings.py
|
2017-01-05 23:24:32 +01:00
|
|
|
fi
|
|
|
|
|
2017-07-21 14:56:41 +02:00
|
|
|
# Fix local warning
|
|
|
|
ynh_replace_string en_US.UTF-8 $LANG $final_path/seafile-server-$seafile_version/seahub.sh
|
|
|
|
|
2015-03-25 19:14:18 +01:00
|
|
|
# restore correct permissions
|
2017-07-21 14:56:41 +02:00
|
|
|
chown -R $seafile_user:$seafile_user $final_path
|
2015-03-25 19:14:18 +01:00
|
|
|
|
2015-08-29 13:25:04 +02:00
|
|
|
# delete seafile cache
|
2017-07-21 14:56:41 +02:00
|
|
|
rm -rf /tmp/seahub_cache
|
2015-08-29 13:25:04 +02:00
|
|
|
|
2015-03-25 19:14:18 +01:00
|
|
|
# restart seafile server
|
2017-07-21 14:56:41 +02:00
|
|
|
systemctl start seafile-server.service
|
2015-03-25 19:14:18 +01:00
|
|
|
|
|
|
|
# remove old version files
|
2017-07-21 14:56:41 +02:00
|
|
|
rm -f $final_path/installed/seafile-server_${installed_version}*.tar*
|
|
|
|
rm -f $final_path/seafile-server_${installed_version}_$architecture
|
2015-03-25 19:14:18 +01:00
|
|
|
|
|
|
|
# store new installed version
|
2017-01-05 23:24:32 +01:00
|
|
|
ynh_app_setting_set $app installed_version $seafile_version
|
2015-03-25 19:14:18 +01:00
|
|
|
|
2017-07-21 14:56:41 +02:00
|
|
|
# Reload nginx
|
|
|
|
systemctl reload nginx.service
|