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

49 lines
1.7 KiB
Text
Raw Normal View History

2014-07-20 18:10:20 +02:00
#!/bin/bash
2015-10-23 16:24:30 +02:00
set -e
2014-12-22 19:21:49 +01:00
app=kanboard
2014-07-20 18:10:20 +02:00
# Retrieve settings
2014-12-22 19:21:49 +01:00
domain=$(sudo yunohost app setting $app domain)
path=$(sudo yunohost app setting $app path)
admin=$(sudo yunohost app setting $app adminusername)
email=$(sudo yunohost user info $admin | grep mail: | sed "s/mail: //g")
2014-12-22 19:21:49 +01:00
db_pwd=$(sudo yunohost app setting $app mysqlpwd)
2014-12-22 19:21:49 +01:00
final_path=/var/www/$app
2015-02-25 17:31:18 +01:00
sudo mv $final_path $final_path.old
2014-11-23 20:45:36 +01:00
sudo mkdir -p $final_path
2015-10-20 15:44:33 +02:00
sudo cp -a ../sources/. $final_path
2014-11-23 20:45:36 +01:00
sudo cp -a $final_path.old/data $final_path/data
2015-02-25 17:31:18 +01:00
sudo rm -Rf $final_path.old
# Copy and edit config.php
sudo cp ../conf/config.php $final_path
sudo sed -i "s/yuno_dbpdw/$db_pwd/g" $final_path/config.php
2014-12-22 19:21:49 +01:00
sudo sed -i "s/yuno_dbuser/$app/g" $final_path/config.php
sudo sed -i "s/yuno_admin/$admin/g" $final_path/config.php
sudo sed -i "s/yuno_email/$email/g" $final_path/config.php
sudo sed -i "s/yuno_domain/$domain/g" $final_path/config.php
2015-02-25 17:31:18 +01:00
# Set permissions to data directory and config file
2014-07-20 18:10:20 +02:00
sudo chown -R www-data:www-data $final_path/data
2015-02-25 17:31:18 +01:00
sudo chown www-data:www-data $final_path/config.php
2014-07-20 18:10:20 +02:00
2015-10-20 15:44:33 +02:00
# Use dedicated php pool
sed -i "s@NAMETOCHANGE@$app@g" ../conf/php-fpm.conf
finalphpconf=/etc/php5/fpm/pool.d/$app.conf
sudo cp ../conf/php-fpm.conf $finalphpconf
sudo chown root: $finalphpconf
sudo chmod 644 $finalphpconf
# Modify Nginx configuration file and copy it to Nginx conf directory
2015-10-20 15:44:33 +02:00
sed -i "s@NAMETOCHANGE@$app@g" ../conf/nginx.conf*
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf*
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf*
2014-12-22 19:21:49 +01:00
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
2014-07-20 18:10:20 +02:00
2015-10-20 15:44:33 +02:00
# Reload Nginx, PHP5-FPM and regenerate SSOwat conf
sudo service php5-fpm restart
2014-07-20 18:10:20 +02:00
sudo service nginx reload
sudo yunohost app ssowatconf