1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flarum_ynh.git synced 2024-09-03 18:36:24 +02:00

Manage swap

This commit is contained in:
yalh76 2020-06-12 16:47:52 +02:00 committed by tituspijean
parent beacda30d7
commit a91f4d9cfc
4 changed files with 17 additions and 14 deletions

View file

@ -5,6 +5,8 @@
# dependencies used by the app
pkg_dependencies=""
swap_needed=1024
YNH_PHP_VERSION="7.3"
extra_php_dependencies="php${YNH_PHP_VERSION}-curl php${YNH_PHP_VERSION}-dom php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-json php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-pdo-mysql php${YNH_PHP_VERSION}-tokenizer php${YNH_PHP_VERSION}-zip"

View file

@ -132,14 +132,11 @@ phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
#=================================================
# SPECIFIC SETUP
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH CURRENT RAM
# ADD SWAP
#=================================================
ynh_script_progression --message="Ensuring sufficient memory..." --weight=1
ynh_print_info --message="Adding swap..."
# Check RAM
if [[ $(ynh_get_ram --free) < 1000 ]]; then
ynh_add_swap --size=1000
fi
ynh_add_swap --size=$swap_needed
#=================================================
# INSTALL COMPOSER DEPENDENCIES

View file

@ -111,6 +111,13 @@ ynh_script_progression --message="Restoring the logrotate configuration..."
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# ADD SWAP
#=================================================
ynh_script_progression --message="Adding swap..."
ynh_add_swap --size=$swap_needed
#=================================================
# GENERIC FINALIZATION
#=================================================

View file

@ -193,15 +193,12 @@ phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
#=================================================
# SPECIFIC UPGRADE
#===================================================
# CHECK IF THE APP CAN BE INSTALLED WITH CURRENT RAM
#===================================================
ynh_script_progression --message="Ensuring sufficient memory..." --weight=1
#=================================================
# ADD SWAP
#=================================================
ynh_script_progression --message="Adding swap..."
# Check RAM
if [[ $(ynh_get_ram --free) < 1000 ]]; then
ynh_add_swap --size=1000
fi
ynh_add_swap --size=$swap_needed
#=================================================
# COMPOSER AND FLARUM UPGRADE