diff --git a/scripts/_common.sh b/scripts/_common.sh index e40900d..2c37081 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -3,9 +3,6 @@ #================================================= # COMMON VARIABLES #================================================= -# PHP APP SPECIFIC -#================================================= -pkg_dependencies="" #================================================= # PERSONAL HELPERS diff --git a/scripts/install b/scripts/install index 8c4adae..b5f133c 100755 --- a/scripts/install +++ b/scripts/install @@ -51,13 +51,6 @@ ynh_app_setting_set --app=$app --key=xms --value=$xms xmx=1g ynh_app_setting_set --app=$app --key=xmx --value=$xmx -#================================================= -# INSTALL DEPENDENCIES -#================================================= -ynh_script_progression --message="Installing dependencies..." --weight=1 - -ynh_install_app_dependencies $pkg_dependencies - #================================================= # CREATE DEDICATED USER #================================================= diff --git a/scripts/restore b/scripts/restore index fc9eff0..9d07f2d 100755 --- a/scripts/restore +++ b/scripts/restore @@ -85,15 +85,6 @@ chown $app:$app "/run/$app" #================================================= # SPECIFIC RESTORATION -#================================================= -# REINSTALL DEPENDENCIES -#================================================= -ynh_script_progression --message="Reinstalling dependencies..." --weight=1 - -# Define and install dependencies -ynh_install_app_dependencies $pkg_dependencies - - #================================================= # RESTORE VARIOUS FILES #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 5717200..cee2c90 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -101,13 +101,6 @@ chmod 750 "$final_path" chmod -R o-rwx "$final_path" chown -R $app:$app "$final_path" -#================================================= -# UPGRADE DEPENDENCIES -#================================================= -ynh_script_progression --message="Upgrading dependencies..." --weight=1 - -ynh_install_app_dependencies $pkg_dependencies - #================================================= # UPDATE A CONFIG FILE #=================================================