1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nocodb_ynh.git synced 2024-09-03 19:56:01 +02:00

Merge pull request #139 from nathanael-h/fix-config-upgrade

This commit is contained in:
tituspijean 2024-04-04 22:59:03 +02:00 committed by GitHub
commit f595d49610
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 0 deletions

View file

@ -25,6 +25,16 @@ ynh_script_progression --message="Updating NGINX web server configuration..." --
ynh_change_url_nginx_config
#=================================================
# MODIFY CONFIGURATION
#=================================================
ynh_script_progression --message="Modifying configuration file..." --weight=1
ynh_add_config --template="env" --destination="$install_dir/.env"
chmod 400 "$install_dir/.env"
chown "$app:$app" "$install_dir/.env"
#=================================================
# GENERIC FINALISATION
#=================================================

View file

@ -30,6 +30,16 @@ chmod -R o-rwx "$install_dir"
chown -R "$app:$app" "$install_dir"
chmod +x "$install_dir/nocodb"
#=================================================
# UPGRADE CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrade configuration file..." --weight=1
ynh_add_config --template="env" --destination="$install_dir/.env"
chmod 400 "$install_dir/.env"
chown "$app:$app" "$install_dir/.env"
#=================================================
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================