1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/n8n_ynh.git synced 2024-09-03 19:55:52 +02:00

Update install

This commit is contained in:
ericgaspar 2021-09-18 16:32:38 +02:00
parent 02e362a434
commit 3a2e8eaf30
No known key found for this signature in database
GPG key ID: 574F281483054D44

View file

@ -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
#=================================================