1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ifm_ynh.git synced 2024-09-03 18:45:52 +02:00

Merge pull request #17 from YunoHost-Apps/testing

Testing
This commit is contained in:
eric_G 2024-01-01 18:18:11 +01:00 committed by GitHub
commit 1312eb1ab1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 18 additions and 5386 deletions

View file

@ -30,7 +30,7 @@ The IFM is a web-based filemanager, which comes as a single file solution using
- simple authentication (LDAP via `ldap_bind` possible)
**Shipped version:** 4.0.2~ynh1
**Shipped version:** 4.0.2~ynh2
**Demo:** https://ifmdemo.gitea.de/

View file

@ -29,7 +29,7 @@ L'IFM est un gestionnaire de fichiers basé sur le Web, qui se présente sous la
- aperçu de l'image
- authentification simple (LDAP via `ldap_bind` possible)
**Version incluse :** 4.0.2~ynh1
**Version incluse :** 4.0.2~ynh2
**Démo :** https://ifmdemo.gitea.de/

View file

@ -1 +1 @@
The IFM is usually locked to it's own directory (`__DATA_DIR__`), so you are not able to go above. You can change that by setting `env[IFM_ROOT_DIR] = __DATA_DIR__` in the PHP config `/etc/php/8.0/fpm/pool.d/ifm.conf` L.434 with the help of this [documentation](https://github.com/misterunknown/ifm/wiki/Configuration).
The IFM is usually locked to it's own directory (`__DATA_DIR__`), so you are not able to go above. You can change that by setting `env[IFM_ROOT_DIR] = __DATA_DIR__` in the PHP config `/etc/php/8.2/fpm/pool.d/ifm.conf` L.434 with the help of this [documentation](https://github.com/misterunknown/ifm/wiki/Configuration).

View file

@ -1 +1 @@
L'IFM est généralement verrouillé dans son propre répertoire (`__DATA_DIR__`), vous ne pouvez donc pas aller sur d'autres répertoires. Vous pouvez changer cela en définissant `env[IFM_ROOT_DIR] = /home/yunohost.app/ifm` dans la configuration PHP `/etc/php/8.0/fpm/pool.d/ifm.conf` L.434 en vous aidant de cette [documentation](https://github.com/misterunknown/ifm/wiki/Configuration).
L'IFM est généralement verrouillé dans son propre répertoire (`__DATA_DIR__`), vous ne pouvez donc pas aller sur d'autres répertoires. Vous pouvez changer cela en définissant `env[IFM_ROOT_DIR] = __DATA_DIR__` dans la configuration PHP `/etc/php/8.2/fpm/pool.d/ifm.conf` L.434 en vous aidant de cette [documentation](https://github.com/misterunknown/ifm/wiki/Configuration).

View file

@ -5,7 +5,7 @@ name = "IFM"
description.en = "Improved File Manager"
description.fr = "Gestionnaire de fichiers amélioré"
version = "4.0.2~ynh1"
version = "4.0.2~ynh2"
maintainers = ["eric_G"]
@ -40,9 +40,13 @@ ram.runtime = "50M"
default = "visitors"
[resources]
#[resources.sources.main]
#url = "https://github.com/misterunknown/ifm/releases/download/v4.0.0/ifm.php"
#sha256 = "59a888e454a083a420c074e303507e0efd41fb10272f52860c8e6d9cc640aea4"
[resources.sources.main]
in_subdir = false
extract = false
url = "https://github.com/misterunknown/ifm/releases/download/v4.0.2/ifm.php"
sha256 = "902e45ef45a5a2c1fc8a1186f1acf3f4588071791e4bc8175de067eb33070594"
rename = "ifm.php"
autoupdate.strategy = "latest_github_tag"
[resources.system_user]
@ -55,5 +59,4 @@ ram.runtime = "50M"
[resources.apt]
packages = "php8.0-zip php8.0-curl php8.0-mbstring php8.0-ldap php8.0-json php8.0-xml"
packages = "php8.2-zip, php8.2-curl, php8.2-mbstring, php8.2-ldap, php8.2-xml"

View file

@ -30,10 +30,7 @@ ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=3
#ynh_setup_source --dest_dir="$install_dir"
mkdir -p $install_dir
mv "../sources/ifm.php" "$install_dir/ifm.php"
ynh_setup_source --dest_dir="$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"

View file

@ -17,11 +17,6 @@ ynh_script_progression --message="Removing NGINX web server configuration..." --
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config

View file

@ -10,15 +10,6 @@
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
@ -45,6 +36,8 @@ ynh_script_progression --message="Restoring the PHP-FPM configuration..." --weig
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# GENERIC FINALIZATION
#=================================================

View file

@ -46,7 +46,7 @@ if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=2
mv -f "../sources/ifm.php" "$install_dir/ifm.php"
ynh_setup_source --dest_dir="$install_dir"
fi
chmod -R o-rwx "$install_dir"
@ -58,7 +58,7 @@ chown -R $app:www-data "$install_dir"
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
# Create a dedicated PHP-FPM config
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint
# Create a dedicated NGINX config
ynh_add_nginx_config

File diff suppressed because one or more lines are too long