From c299f9a6a20ff77513d58f6ed86c98fc4287fe0e Mon Sep 17 00:00:00 2001 From: magikcypress Date: Tue, 14 Mar 2017 19:11:30 +0100 Subject: [PATCH] Suppression de with_mysql dans backup --- scripts/backup | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/scripts/backup b/scripts/backup index 0ca3670..13d9e32 100644 --- a/scripts/backup +++ b/scripts/backup @@ -11,7 +11,6 @@ source /usr/share/yunohost/helpers # Retrieve app settings domain=$(ynh_app_setting_get "$app" domain) -with_mysql=$(ynh_app_setting_get "$app" with_mysql) # Copy the app files final_path="/var/www/${app}" @@ -24,7 +23,5 @@ ynh_backup "/etc/php5/fpm/pool.d/${app}.conf" "php-fpm.conf" ynh_backup "/etc/php5/fpm/conf.d/20-${app}.ini" "php-fpm.ini" # Backup db -if [[ $with_mysql -eq 1 ]]; then - root_pwd=$(sudo cat /etc/yunohost/mysql) - sudo su -c "mysqldump -u root -p$root_pwd --no-create-db $app > ./db.sql" -fi \ No newline at end of file +root_pwd=$(sudo cat /etc/yunohost/mysql) +sudo su -c "mysqldump -u root -p$root_pwd --no-create-db $app > ./db.sql" \ No newline at end of file