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

74 lines
3 KiB
Text
Raw Normal View History

2014-01-14 22:57:44 +01:00
#!/bin/bash
source .fonctions # Charge les fonctions génériques habituellement utilisées dans le script
2014-01-14 22:57:44 +01:00
# Récupère les infos de l'application.
app=$YNH_APP_INSTANCE_NAME
2014-01-14 22:57:44 +01:00
# Source app helpers
source /usr/share/yunohost/helpers
domain=$(ynh_app_setting_get $app domain)
path=$(ynh_app_setting_get $app path)
2017-02-15 02:14:31 +01:00
admin=$(ynh_app_setting_get $app admin)
final_path=$(ynh_app_setting_get $app final_path)
db_pwd=$(ynh_app_setting_get $app db_pwd)
db_user=$(ynh_app_setting_get $app db_user)
CHECK_PATH # Vérifie et corrige la syntaxe du path.
2014-04-03 15:34:56 +02:00
2014-01-14 22:57:44 +01:00
# Copy files to the right place
version=$(cat ../sources/upstream_version)
sudo wget -nv https://files.phpmyadmin.net/phpMyAdmin/$version/phpMyAdmin-$version-all-languages.tar.gz -O phpMyAdmin-$version-all-languages.tar.gz
sudo wget -nv https://files.phpmyadmin.net/phpMyAdmin/$version/phpMyAdmin-$version-all-languages.tar.gz.sha256 -O phpMyAdmin-$version-all-languages.tar.gz.sha256
sudo sha256sum -c phpMyAdmin-$version-all-languages.tar.gz.sha256 --status || (echo "Corrupt source" >&2 && false)
sudo tar xzf phpMyAdmin-$version-all-languages.tar.gz -C ../sources/ > /dev/null 2>&1
sudo cp -r ../sources/phpMyAdmin-$version-all-languages/. $final_path
2014-07-27 13:28:47 +02:00
# Update tables
2017-02-15 14:20:01 +01:00
sudo sed -i "s@phpmyadmin@$db_user@g" $final_path/sql/upgrade_column_info_4_3_0+.sql
2017-02-15 01:44:16 +01:00
sudo mysql -u $db_user -p$db_pwd < $final_path/sql/upgrade_column_info_4_3_0+.sql
2017-02-15 14:20:01 +01:00
sudo sed -i "s@phpmyadmin@$db_user@g" $final_path/sql/create_tables.sql
2017-02-15 01:44:16 +01:00
sudo mysql -u $db_user -p$db_pwd < $final_path/sql/create_tables.sql
2014-07-27 13:28:47 +02:00
# Configuration
echo "Configuring application..."
sed -i "s@YNH_DOMAIN@$domain@g" ../conf/config.inc.php
sed -i "s@YNH_PMA_USER@$db_user@g" ../conf/config.inc.php
sed -i "s@YNH_PMA_PASSWORD@$db_pwd@g" ../conf/config.inc.php
sed -i "s@YNH_MYSQL_ROOT_PASSWORD@$(sudo cat /etc/yunohost/mysql)@g" ../conf/config.inc.php
sudo cp ../conf/config.inc.php $final_path
2014-01-14 22:57:44 +01:00
# Files owned by root, www-data can just read
echo "Setting permission..."
sudo chown -R root: $final_path
sudo find $final_path -type f -exec chmod 644 {} \;
sudo find $final_path -type d -exec chmod 755 {} \;
2014-07-22 15:58:29 +02:00
# config.inc.php contains sensitive data, restrict its access
sudo chown root:www-data $final_path/config.inc.php
sudo chmod 640 $final_path/config.inc.php
2014-01-14 22:57:44 +01:00
# Modify Nginx configuration file and copy it to Nginx conf directory
echo "Setting up nginx configuration..."
2014-01-14 22:57:44 +01:00
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
sed -i "s@YNH_WWW_ALIAS@$final_path@g" ../conf/nginx.conf
sed -i "s@NAMETOCHANGE@$app@g" ../conf/nginx.conf
nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf
sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
2017-02-17 20:09:16 +01:00
sudo chmod 644 $nginxconf
2014-01-14 22:57:44 +01:00
2015-07-07 23:00:35 +02:00
# Add dedicated php-fpm to be able to upload bigger database
sed -i "s@NAMETOCHANGE@$app@g" ../conf/php-fpm.conf
phpfpmconf=/etc/php5/fpm/pool.d/$app.conf
2015-07-07 23:00:35 +02:00
sudo cp ../conf/php-fpm.conf $phpfpmconf
sudo chown root: $phpfpmconf
sudo chmod 644 $phpfpmconf
2017-02-15 01:50:32 +01:00
# We grant access to admin only
sudo yunohost app addaccess --users=$admin $app
2017-02-17 20:11:21 +01:00
sudo service php5-fpm reload
2014-01-14 22:57:44 +01:00
sudo service nginx reload
sudo yunohost app ssowatconf