diff --git a/scripts/install b/scripts/install index caa46bc..030f670 100644 --- a/scripts/install +++ b/scripts/install @@ -62,10 +62,8 @@ then sudo sed -i "s@#--PRIVATE--@@g" /etc/nginx/conf.d/$domain.d/$app.conf fi -# Installation de perlmagick, interface perl pour imagemagick et de carton, gestionnaire de dépendances perl ynh_package_update ynh_package_install carton -ynh_package_install perlmagick ## Copy and fix variable into lufi config sudo cp ../conf/lufi.conf.template "${final_path}/lufi.conf" diff --git a/scripts/remove b/scripts/remove index 127bc2a..3171afe 100644 --- a/scripts/remove +++ b/scripts/remove @@ -41,7 +41,6 @@ SECURE_REMOVE '/var/log/$app/' # Delete log REMOVE_LOGROTATE_CONF # Delete logrotate configuration ynh_package_remove carton || echo "Carton already uninstalled" -ynh_package_remove perlmagick || echo "perlmagick already uninstalled" # Reload SSOwat configuration sudo yunohost app ssowatconf diff --git a/scripts/restore b/scripts/restore index 71876fc..63933bd 100644 --- a/scripts/restore +++ b/scripts/restore @@ -15,10 +15,8 @@ domain=$(ynh_app_setting_get $app domain) path=$(ynh_app_setting_get $app path) is_public=$(ynh_app_setting_get $app is_public) -# Installation de perlmagick, interface perl pour imagemagick et de carton, gestionnaire de dépendances perl ynh_package_update ynh_package_install carton -ynh_package_install perlmagick # Check domain/path availability sudo yunohost app checkurl "${domain}${path}" -a "${app}" \