From 3a2e8eaf30223bc921b72f232f07baba02ffb3af Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 18 Sep 2021 16:32:38 +0200 Subject: [PATCH] Update install --- scripts/install | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/scripts/install b/scripts/install index 23c5e11..76dd35d 100755 --- a/scripts/install +++ b/scripts/install @@ -97,7 +97,17 @@ ynh_app_setting_set --app=$app --key=final_path --value=$final_path mkdir -p $final_path #================================================= -# INSTALL ETHERPAD +# ADD A CONFIGURATION +#================================================= +ynh_script_progression --message="Adding a configuration file..." --weight=1 + +ynh_add_config --template="../conf/.env" --destination="$final_path/.env" + +chmod 400 "$final_path/.env" +chown $app:$app "$final_path/.env" + +#================================================= +# INSTALL n8n #================================================= ynh_script_progression --message="Installing $app..." --weight=2 @@ -133,16 +143,6 @@ chmod 750 "$datadir" chmod -R o-rwx "$datadir" chown -R $app:www-data "$datadir" -#================================================= -# ADD A CONFIGURATION -#================================================= -ynh_script_progression --message="Adding a configuration file..." --weight=1 - -ynh_add_config --template="../conf/.env" --destination="$final_path/.env" - -chmod 400 "$final_path/.env" -chown $app:$app "$final_path/.env" - #================================================= # SETUP SYSTEMD #=================================================