mirror of
https://github.com/YunoHost-Apps/osticket_ynh.git
synced 2024-09-03 19:56:17 +02:00
Merge branch 'testing' into pr/73
This commit is contained in:
commit
97d8689ffd
4 changed files with 8 additions and 17 deletions
|
@ -31,7 +31,7 @@ osTicket is a widely-used open source support ticket system. It seamlessly integ
|
||||||
* Official app website: <https://osticket.com>
|
* Official app website: <https://osticket.com>
|
||||||
* Official user documentation: <https://docs.osticket.com>
|
* Official user documentation: <https://docs.osticket.com>
|
||||||
* Upstream app code repository: <https://github.com/osTicket/osTicket>
|
* Upstream app code repository: <https://github.com/osTicket/osTicket>
|
||||||
* YunoHost documentation for this app: <https://yunohost.org/app_osticket>
|
* YunoHost Store: <https://apps.yunohost.org/app/osticket>
|
||||||
* Report a bug: <https://github.com/YunoHost-Apps/osticket_ynh/issues>
|
* Report a bug: <https://github.com/YunoHost-Apps/osticket_ynh/issues>
|
||||||
|
|
||||||
## Developer info
|
## Developer info
|
||||||
|
|
|
@ -31,7 +31,7 @@ osTicket is a widely-used open source support ticket system. It seamlessly integ
|
||||||
* Site officiel de l’app : <https://osticket.com>
|
* Site officiel de l’app : <https://osticket.com>
|
||||||
* Documentation officielle utilisateur : <https://docs.osticket.com>
|
* Documentation officielle utilisateur : <https://docs.osticket.com>
|
||||||
* Dépôt de code officiel de l’app : <https://github.com/osTicket/osTicket>
|
* Dépôt de code officiel de l’app : <https://github.com/osTicket/osTicket>
|
||||||
* Documentation YunoHost pour cette app : <https://yunohost.org/app_osticket>
|
* YunoHost Store: <https://apps.yunohost.org/app/osticket>
|
||||||
* Signaler un bug : <https://github.com/YunoHost-Apps/osticket_ynh/issues>
|
* Signaler un bug : <https://github.com/YunoHost-Apps/osticket_ynh/issues>
|
||||||
|
|
||||||
## Informations pour les développeurs
|
## Informations pour les développeurs
|
||||||
|
|
|
@ -20,8 +20,11 @@ code = "https://github.com/osTicket/osTicket"
|
||||||
yunohost = ">= 11.2"
|
yunohost = ">= 11.2"
|
||||||
architectures = "all"
|
architectures = "all"
|
||||||
multi_instance = true
|
multi_instance = true
|
||||||
|
|
||||||
ldap = false
|
ldap = false
|
||||||
|
|
||||||
sso = true
|
sso = true
|
||||||
|
|
||||||
disk = "50M"
|
disk = "50M"
|
||||||
ram.build = "50M"
|
ram.build = "50M"
|
||||||
ram.runtime = "50M"
|
ram.runtime = "50M"
|
||||||
|
@ -41,8 +44,8 @@ ram.runtime = "50M"
|
||||||
[install.language]
|
[install.language]
|
||||||
ask.en = "Choose the application language"
|
ask.en = "Choose the application language"
|
||||||
ask.fr = "Choisissez la langue de l'application"
|
ask.fr = "Choisissez la langue de l'application"
|
||||||
type = "string"
|
type = "select"
|
||||||
select = ["en_US", "fr", "ar_EG", "ar_SA", "az", "bg", "bn", "bs", "ca", "cs", "da", "de", "el", "en_GB", "es_AR", "es_ES", "es_MX", "et", "eu", "fa", "fi", "he", "hi", "hr", "hu", "id", "is", "it", "ja", "ka", "km", "ko", "lt", "lv", "mk", "mn", "ms", "nl", "no", "pl", "pt_BR", "pt_PT", "ro", "ru", "sk", "sl", "sq", "sr", "sr_CS", "sv_SE", "sw", "th", "tr", "uk", "ur_IN", "ur_PK", "vi", "zh_CN", "zh_TW"]
|
choices = ["en_US", "fr", "ar_EG", "ar_SA", "az", "bg", "bn", "bs", "ca", "cs", "da", "de", "el", "en_GB", "es_AR", "es_ES", "es_MX", "et", "eu", "fa", "fi", "he", "hi", "hr", "hu", "id", "is", "it", "ja", "ka", "km", "ko", "lt", "lv", "mk", "mn", "ms", "nl", "no", "pl", "pt_BR", "pt_PT", "ro", "ru", "sk", "sl", "sq", "sr", "sr_CS", "sv_SE", "sw", "th", "tr", "uk", "ur_IN", "ur_PK", "vi", "zh_CN", "zh_TW"]
|
||||||
default = "fr"
|
default = "fr"
|
||||||
|
|
||||||
[install.admin]
|
[install.admin]
|
||||||
|
@ -144,7 +147,7 @@ ram.runtime = "50M"
|
||||||
api.protected = true
|
api.protected = true
|
||||||
|
|
||||||
[resources.apt]
|
[resources.apt]
|
||||||
packages = "mariadb-server php8.2-mysql php8.2-gd php-php-gettext php8.2-imap php8.2-fpm php8.2-mbstring php8.2-xml php8.2-zip php8.2-intl php8.2-curl curl"
|
packages = "mariadb-server, php8.2-mysql, php8.2-gd, php-php-gettext, php8.2-imap, php8.2-mbstring, php8.2-xml, php8.2-zip, php8.2-intl, php8.2-curl, curl"
|
||||||
|
|
||||||
[resources.database]
|
[resources.database]
|
||||||
type = "mysql"
|
type = "mysql"
|
||||||
|
|
|
@ -43,21 +43,9 @@ 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=low --footprint=low
|
ynh_add_fpm_config --usage=low --footprint=low
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# 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
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# SPECIFIC SETUP
|
|
||||||
#=================================================
|
|
||||||
# SET THE CRON FILE
|
|
||||||
#=================================================
|
|
||||||
ynh_script_progression --message="Setting the cron file..." --weight=1
|
|
||||||
|
|
||||||
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
|
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Add table
Reference in a new issue