mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
Suppression de with_mysql dans backup
This commit is contained in:
parent
500214b5ef
commit
c299f9a6a2
1 changed files with 2 additions and 5 deletions
|
@ -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
|
||||
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
||||
sudo su -c "mysqldump -u root -p$root_pwd --no-create-db $app > ./db.sql"
|
Loading…
Add table
Reference in a new issue