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

Merge pull request #5 from YunoHost-Apps/testing

Testing
This commit is contained in:
eric_G 2023-08-25 15:53:42 +02:00 committed by GitHub
commit d761e49289
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 4 additions and 25 deletions

View file

@ -29,7 +29,7 @@ GitList is an elegant and modern web interface for interacting with multiple git
- Repository statistics - Repository statistics
**Shipped version:** 2.0.0~ynh2 **Shipped version:** 2.0.0~ynh3
## Screenshots ## Screenshots

View file

@ -29,7 +29,7 @@ GitList is an elegant and modern web interface for interacting with multiple git
- Repository statistics - Repository statistics
**Version incluse :** 2.0.0~ynh2 **Version incluse :** 2.0.0~ynh3
## Captures décran ## Captures décran

View file

@ -5,7 +5,7 @@ name = "GitList"
description.en = "Elegant and modern git repository viewer" description.en = "Elegant and modern git repository viewer"
description.fr = "Visualiseur de référentiel git élégant et moderne" description.fr = "Visualiseur de référentiel git élégant et moderne"
version = "2.0.0~ynh2" version = "2.0.0~ynh3"
maintainers = ["eric_G"] maintainers = ["eric_G"]
@ -16,7 +16,7 @@ admindoc = "https://github.com/klaussilveira/gitlist/wiki"
code = "https://github.com/klaussilveira/gitlist" code = "https://github.com/klaussilveira/gitlist"
[integration] [integration]
yunohost = ">= 11.1.19" yunohost = ">= 11.2"
architectures = "all" architectures = "all"
multi_instance = true multi_instance = true
ldap = false ldap = false
@ -28,7 +28,6 @@ ram.runtime = "50M"
[install] [install]
[install.domain] [install.domain]
type = "domain" type = "domain"
full_domain = true
[install.init_main_permission] [install.init_main_permission]
type = "group" type = "group"

View file

@ -44,11 +44,6 @@ ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
# Create a dedicated PHP-FPM config # Create a dedicated PHP-FPM config
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
# Create a dedicated NGINX config # Create a dedicated NGINX config
ynh_add_nginx_config ynh_add_nginx_config

View file

@ -17,11 +17,6 @@ ynh_script_progression --message="Removing NGINX web server configuration..." --
# Remove the dedicated NGINX config # Remove the dedicated NGINX config
ynh_remove_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 # Remove the dedicated PHP-FPM config
ynh_remove_fpm_config ynh_remove_fpm_config

View file

@ -36,11 +36,6 @@ 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/php/$phpversion/fpm/pool.d/$app.conf"
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf" ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#================================================= #=================================================

View file

@ -61,11 +61,6 @@ ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
# Create a dedicated PHP-FPM config # Create a dedicated PHP-FPM config
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
# Create a dedicated NGINX config # Create a dedicated NGINX config
ynh_add_nginx_config ynh_add_nginx_config