1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bookstack_ynh.git synced 2024-09-03 18:16:02 +02:00
This commit is contained in:
Éric Gaspar 2024-06-21 09:37:18 +02:00
parent 88bdf38dba
commit efe5491284
4 changed files with 7 additions and 20 deletions

View file

@ -4,4 +4,4 @@
# COMMON VARIABLES AND CUSTOM HELPERS
#=================================================
composer_version=2.5.8
composer_version=2.7.7

View file

@ -11,9 +11,9 @@ timezone="$(cat /etc/timezone)"
redis_db=$(ynh_redis_get_free_db)
email=$(ynh_user_get_info --username=$admin --key=mail)
#REMOVEME? fpm_footprint="low"
#REMOVEME? fpm_free_footprint=0
#REMOVEME? fpm_usage="low"
fpm_footprint="low"
fpm_free_footprint=0
fpm_usage="low"
#=================================================
# STORE SETTINGS FROM MANIFEST
@ -36,13 +36,10 @@ ynh_setup_source --dest_dir="$install_dir"
#=================================================
ynh_script_progression "Adding system configurations related to $app ..."
# Create a dedicated PHP-FPM config
ynh_config_add_phpfpm
# Create a dedicated NGINX config
ynh_config_add_nginx
# Create a dedicated systemd config
ynh_config_add_systemd
yunohost service add $app --description="BookStack Queue Worker" --log="/var/log/$app/$app.log"
@ -52,7 +49,6 @@ yunohost service add $app --description="BookStack Queue Worker" --log="/var/log
#=================================================
ynh_script_progression "Installing $app with Composer..."
# Install composer
ynh_composer_install
ynh_composer_exec install --no-dev

View file

@ -7,7 +7,6 @@ source /usr/share/yunohost/helpers
# REMOVE SYSTEM CONFIGURATIONS
#=================================================
# REMOVE SYSTEMD SERVICE
#=================================================
ynh_script_progression "Removing system configurations related to $app..."
@ -18,15 +17,12 @@ then
yunohost service remove $app
fi
# Remove the dedicated systemd config
ynh_config_remove_systemd
ynh_redis_remove_db "$redis_db"
# Remove the dedicated NGINX config
ynh_config_remove_nginx
# Remove the dedicated PHP-FPM config
ynh_config_remove_phpfpm
#=================================================

View file

@ -10,19 +10,19 @@ ynh_script_progression "Ensuring downward compatibility..."
# If fpm_footprint doesn't exist, create it
if [ -z "${fpm_footprint:-}" ]; then
#REMOVEME? fpm_footprint=low
fpm_footprint=low
ynh_app_setting_set --key=fpm_footprint --value=$fpm_footprint
fi
# If fpm_free_footprint doesn't exist, create it
if [ -z "${fpm_free_footprint:-}" ]; then
#REMOVEME? fpm_free_footprint=0
fpm_free_footprint=0
ynh_app_setting_set --key=fpm_free_footprint --value=$fpm_free_footprint
fi
# If fpm_usage doesn't exist, create it
if [ -z "${fpm_usage:-}" ]; then
#REMOVEME? fpm_usage=low
fpm_usage=low
ynh_app_setting_set --key=fpm_usage --value=$fpm_usage
fi
@ -31,7 +31,6 @@ fi
#=================================================
ynh_script_progression "Upgrading source files..."
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --full_replace --keep=".env public/uploads storage/uploads"
#=================================================
@ -39,13 +38,10 @@ ynh_setup_source --dest_dir="$install_dir" --full_replace --keep=".env public/up
#=================================================
ynh_script_progression "Upgrading system configurations related to $app..."
# Create a dedicated PHP-FPM config
ynh_config_add_phpfpm
# Create a dedicated NGINX config
ynh_config_add_nginx
# Create a dedicated systemd config
ynh_config_add_systemd
yunohost service add $app --description="BookStack Queue Worker" --log="/var/log/$app/$app.log"
@ -55,7 +51,6 @@ yunohost service add $app --description="BookStack Queue Worker" --log="/var/log
#=================================================
ynh_script_progression "Installing $app with Composer..."
# Install composer
ynh_composer_install
ynh_composer_exec install --no-dev