From d98c9c4ee4b574a04645b23374ada93f68be7e55 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Tue, 18 May 2021 23:30:35 +0200 Subject: [PATCH] Fix install --- scripts/install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index e699a88..b3d8137 100644 --- a/scripts/install +++ b/scripts/install @@ -13,7 +13,7 @@ source /usr/share/yunohost/helpers # MANAGE SCRIPT FAILURE #================================================= -ynh_clean_setup() { +ynh_clean_setup () { true } # Exit if an error occurs during the execution of the script @@ -60,7 +60,7 @@ ynh_app_setting_set --app=$app --key=users_status --value=$users_status ynh_script_progression --message="Configuring system user..." # Create a system user -ynh_system_user_create --home_dir=$final_path +ynh_system_user_create --username=$app --home_dir=$final_path #================================================= # CREATE A MYSQL DATABASE @@ -99,7 +99,7 @@ ynh_add_nginx_config #================================================= ynh_script_progression --message="Configuring PHP-FPM..." -# Create a dedicated php-fpm config +# Create a dedicated PHP-FPM config ynh_add_fpm_config --package="$extra_php_dependencies" #=================================================