|
|
@@ -11,6 +11,7 @@ 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}"
|
|
|
@@ -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"
|
|
|
|
|
|
# Backup db
|
|
|
-root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
|
-sudo su -c "mysqldump -u root -p$root_pwd --no-create-db $app > ./db.sql"
|
|
|
+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
|