1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/prestashop_ynh.git synced 2024-09-03 20:06:39 +02:00

Le backup se passe mal, suite à la création étrange

This commit is contained in:
magikcypress 2017-03-16 14:13:03 +01:00
parent c8610e4eff
commit 25f7570cda
2 changed files with 6 additions and 9 deletions

View file

@ -11,6 +11,7 @@ source /usr/share/yunohost/helpers
# Retrieve app settings # Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain) domain=$(ynh_app_setting_get "$app" domain)
with_mysql=$(ynh_app_setting_get "$app" with_mysql)
# Copy the app files # Copy the app files
final_path="/var/www/${app}" final_path="/var/www/${app}"
@ -23,5 +24,7 @@ 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" ynh_backup "/etc/php5/fpm/conf.d/20-${app}.ini" "php-fpm.ini"
# Backup db # Backup db
root_pwd=$(sudo cat /etc/yunohost/mysql) if [[ $with_mysql -eq 1 ]]; then
sudo su -c "mysqldump -u root -p$root_pwd --no-create-db $app > ./db.sql" root_pwd=$(sudo cat /etc/yunohost/mysql)
sudo su -c "mysqldump -u root -p$root_pwd --no-create-db $app > ./db.sql"
fi

View file

@ -66,13 +66,7 @@ ynh_app_setting_set $app email $email
# CREATE A SQL BDD # CREATE A SQL BDD
#================================================= #=================================================
db_name=$app GENERATE_DB $app # Create a database and a dedicated user in the app name
db_user=$app
db_pwd=$(ynh_string_random)
ynh_mysql_create_db "$db_name" "$db_user" "$db_pwd"
ynh_app_setting_set "$app" db_name "$db_name"
ynh_app_setting_set "$app" db_pwd "$db_pwd"
ynh_app_setting_set "$app" db_user "$db_user"
#================================================= #=================================================
# NGINX CONFIGURATION # NGINX CONFIGURATION