mirror of
https://github.com/YunoHost-Apps/discourse_ynh.git
synced 2024-09-03 18:26:18 +02:00
Revert prevent check_memory
This commit is contained in:
parent
f455626b85
commit
b576c4c0bd
3 changed files with 6 additions and 12 deletions
|
@ -42,10 +42,8 @@ test ! -e "$final_path" || ynh_die --message="This path already contains a folde
|
|||
# Register (book) web path
|
||||
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
||||
|
||||
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 0 ]; then
|
||||
# Check memory requirements
|
||||
check_memory_requirements
|
||||
fi
|
||||
# Check memory requirements
|
||||
check_memory_requirements
|
||||
|
||||
#=================================================
|
||||
# STORE SETTINGS FROM MANIFEST
|
||||
|
|
|
@ -44,10 +44,8 @@ ynh_webpath_available --domain=$domain --path_url=$path_url \
|
|||
test ! -d $final_path \
|
||||
|| ynh_die --message="There is already a directory: $final_path "
|
||||
|
||||
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 0 ]; then
|
||||
# Check memory requirements
|
||||
check_memory_requirements
|
||||
fi
|
||||
# Check memory requirements
|
||||
check_memory_requirements
|
||||
|
||||
#=================================================
|
||||
# STANDARD RESTORATION STEPS
|
||||
|
|
|
@ -25,10 +25,8 @@ db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
|
|||
redis_db=$(ynh_app_setting_get --app=$app --key=redis_db)
|
||||
unicorn_workers=$(ynh_app_setting_get --app=$app --key=unicorn_workers)
|
||||
|
||||
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 0 ]; then
|
||||
# Check memory requirements
|
||||
check_memory_requirements_upgrade
|
||||
fi
|
||||
# Check memory requirements
|
||||
check_memory_requirements_upgrade
|
||||
|
||||
#=================================================
|
||||
# CHECK VERSION
|
||||
|
|
Loading…
Reference in a new issue