From 92aa20755ae802eaa667ef3366343cae21f22da2 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Tue, 31 Mar 2020 17:21:11 +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 79d2db6..2771a30 100644 --- a/scripts/remove +++ b/scripts/remove @@ -34,14 +34,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 #================================================= @@ -74,6 +66,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 + #================================================= # REMOVE SWAP #=================================================