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

Update install: php-related setting are set later, and free_fpm_footprint is a dynamic thing, doesn't make sense to define a setting for it

This commit is contained in:
Alexandre Aubin 2024-01-21 16:42:33 +01:00 committed by GitHub
parent 8dbc2e98dc
commit 4c7cbe12c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,35 +1,17 @@
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
source _ynh_mysql_connect_as.sh
#=================================================
# STORE SETTINGS FROM MANIFEST
# INIT STUFF FOR CONFIG PANEL, ETC
#=================================================
maintenance=0
fpm_footprint="high"
fpm_free_footprint=0
fpm_usage="medium"
phpflags="--define apc.enable_cli=1"
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
ynh_app_setting_set --app=$app --key=maintenance --value=$maintenance
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
ynh_app_setting_set --app=$app --key=maintenance --value=0
ynh_app_setting_set --app=$app --key=phpflags --value=$phpflags
ynh_app_setting_set --app=$app --key=has_internet_connection --value=1
ynh_app_setting_set --app=$app --key=default_phone_region --value=""
ynh_app_setting_set --app=$app --key=default_timezone --value="Europe/Paris"