1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/scripts/upgrade

111 lines
3.2 KiB
Text
Raw Normal View History

2014-07-20 18:10:20 +02:00
#!/bin/bash
2015-10-23 16:24:30 +02:00
# Source local helpers
source ./_common.sh
2017-10-19 12:13:47 +02:00
# Source app helpers
source /usr/share/yunohost/helpers
# Abort script if errors
ynh_abort_if_errors
app=$YNH_APP_INSTANCE_NAME
2017-10-19 12:13:47 +02:00
# Set app specific variables
dbname=$app
dbuser=$app
# Source app helpers
source /usr/share/yunohost/helpers
2014-07-20 18:10:20 +02:00
# Retrieve settings
domain=$(ynh_app_setting_get "$app" domain)
path=$(ynh_app_setting_get "$app" path)
admin=$(ynh_app_setting_get "$app" adminusername)
2017-10-19 12:22:39 +02:00
email=$(yunohost user info $admin | grep mail: | sed "s/mail: //g")
dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
is_public=$(ynh_app_setting_get "$app" is_public)
if [ -z $is_public ]
then # Old version doesnt have is_public settings
2017-10-19 12:13:47 +02:00
is_public=0
ynh_app_setting_set $app is_public $is_public
fi
# Check destination directory
DESTDIR="/var/www/$app"
[[ ! -d $DESTDIR ]] && ynh_die \
"The destination directory '$DESTDIR' does not exist.\
The app is not correctly installed, you should remove it first."
2015-12-29 02:06:14 +01:00
# flush php sessions before upgrade
2017-10-19 12:22:39 +02:00
rm -rf /var/lib/php5/session/*
2015-12-29 02:06:14 +01:00
# Move old app dir
2017-10-19 12:22:39 +02:00
mv ${DESTDIR} ${DESTDIR}.old
2014-11-23 20:45:36 +01:00
2017-10-19 11:33:09 +02:00
ynh_setup_source "$DESTDIR"
2016-01-24 18:24:34 +01:00
# restore data
2017-10-19 12:22:39 +02:00
cp -a ${DESTDIR}.old/data ${DESTDIR}
2016-01-24 18:24:34 +01:00
# restore plugins
if [ -e ${DESTDIR}.old/plugins ]
then
2017-10-19 12:22:39 +02:00
cp -a ${DESTDIR}.old/plugins ${DESTDIR}
fi
2016-01-24 18:24:34 +01:00
# delete temp directory
2017-10-19 12:22:39 +02:00
rm -Rf ${DESTDIR}.old
# Copy and edit config.php
2017-10-19 12:22:39 +02:00
cp ../conf/config.php ${DESTDIR}
sed -i "s/yuno_dbpdw/${dbpass}/g" ${DESTDIR}/config.php
sed -i "s/yuno_dbuser/${dbuser}/g" ${DESTDIR}/config.php
sed -i "s/yuno_admin/${admin}/g" ${DESTDIR}/config.php
sed -i "s/yuno_email/${email}/g" ${DESTDIR}/config.php
sed -i "s/yuno_domain/${domain}/g" ${DESTDIR}/config.php
2015-10-26 14:49:22 +01:00
# Set permissions to kanboard and data directory
2017-10-19 12:22:39 +02:00
chown -R root:root ${DESTDIR}
chown -R www-data ${DESTDIR}/{data,plugins}
2014-07-20 18:10:20 +02:00
# Launch database migration
2017-10-19 12:22:39 +02:00
${DESTDIR}/cli db:migrate
# Copy and set php-fpm configuration
phpfpm_conf="/etc/php5/fpm/pool.d/${app}.conf"
sed -i "s@#USER#@${app}@g" ../conf/php-fpm.conf
sed -i "s@#GROUP#@${app}@g" ../conf/php-fpm.conf
sed -i "s@#POOLNAME#@${app}@g" ../conf/php-fpm.conf
sed -i "s@#DESTDIR#@${DESTDIR}/@g" ../conf/php-fpm.conf
2017-10-19 12:22:39 +02:00
cp ../conf/php-fpm.conf "$phpfpm_conf"
chown root: $phpfpm_conf
chmod 644 $phpfpm_conf
2015-10-20 15:44:33 +02:00
2017-10-19 12:13:47 +02:00
finalnginxconf="/etc/nginx/conf.d/${domain}.d/${app}.conf"
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@NAMETOCHANGE@${app}@g" ../conf/nginx.conf*
sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf*
sed -i "s@ALIASTOCHANGE@${DESTDIR}/@g" ../conf/nginx.conf*
2017-10-19 12:22:39 +02:00
cp ../conf/nginx.conf "$finalnginxconf"
2017-10-19 12:13:47 +02:00
if [ "$path" == "/" ]
then
# ynh panel is only comptable with non-root installation
ynh_replace_string " include conf.d/" " #include conf.d/" "$finalnginxconf"
fi
2014-07-20 18:10:20 +02:00
# Make app public or private
2017-10-19 12:13:47 +02:00
if [[ "$is_public" -eq 1 ]];
then
2017-10-19 12:22:39 +02:00
yunohost app setting ${app} unprotected_uris -v "/"
sed -i "s/define('LDAP_AUTH'.*$/define('LDAP_AUTH', true);/g" ${DESTDIR}/config.php
sed -i "s/define('HIDE_LOGIN_FORM'.*$/define('HIDE_LOGIN_FORM', false);/g" ${DESTDIR}/config.php
sed -i "s/define('REMEMBER_ME_AUTH'.*$/define('REMEMBER_ME_AUTH', true);/g" ${DESTDIR}/config.php
sed -i "s/define('DISABLE_LOGOUT'.*$/define('DISABLE_LOGOUT', false);/g" ${DESTDIR}/config.php
fi
# Reload services
2017-10-19 12:22:39 +02:00
service php5-fpm restart || true
service nginx reload || true