From 8fd4255ba72ca9c82a5006ecd301b4b15b09938e Mon Sep 17 00:00:00 2001 From: yalh76 Date: Tue, 31 Mar 2020 17:19:57 +0200 Subject: [PATCH] reorder removal steps --- scripts/remove | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/remove b/scripts/remove index 11d30f4..e7d634b 100644 --- a/scripts/remove +++ b/scripts/remove @@ -33,14 +33,6 @@ ynh_print_info --message="Removing the MySQL database..." # Remove a database if it exists, along with the associated user ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name -#================================================= -# REMOVE PHP-FPM CONFIGURATION -#================================================= -ynh_print_info --message="Removing php-fpm configuration..." - -# Remove the dedicated php-fpm config -ynh_remove_fpm_config - #================================================= # REMOVE PHP #================================================= @@ -73,6 +65,14 @@ ynh_print_info --message="Removing nginx web server configuration..." # Remove the dedicated nginx config ynh_remove_nginx_config +#================================================= +# REMOVE PHP-FPM CONFIGURATION +#================================================= +ynh_print_info --message="Removing php-fpm configuration..." + +# Remove the dedicated php-fpm config +ynh_remove_fpm_config + #================================================= # SPECIFIC REMOVE #=================================================