manifest.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "Zabbix",
  3. "id": "zabbix",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "Monitoring tool for diverse IT components, including networks, servers, VMs and cloud services",
  7. "fr": "Outil pour monitorer des réseaux, des serveurs, des VMs et autres services en ligne"
  8. },
  9. "version": "5.0.20~ynh2",
  10. "url": "https://www.zabbix.com",
  11. "upstream": {
  12. "license": "GPL-2.0-or-later",
  13. "website": "https://www.zabbix.com",
  14. "admindoc": "https://www.zabbix.com/manuals",
  15. "code": "https://github.com/zabbix/zabbix"
  16. },
  17. "license": "GPL-2.0-or-later",
  18. "maintainer": {
  19. "name": "",
  20. "email": ""
  21. },
  22. "requirements": {
  23. "yunohost": ">= 4.3.0"
  24. },
  25. "multi_instance": false,
  26. "services": [
  27. "nginx",
  28. "php7.3-fpm",
  29. "mysql"
  30. ],
  31. "arguments": {
  32. "install": [
  33. {
  34. "name": "domain",
  35. "type": "domain"
  36. },
  37. {
  38. "name": "path",
  39. "type": "path",
  40. "example": "/zabbix",
  41. "default": "/zabbix"
  42. },
  43. {
  44. "name": "is_public",
  45. "type": "boolean",
  46. "help": {
  47. "en": "A public app doesn't need SSO auth : the auth page is opened for everyone",
  48. "fr": "Une application publique ne nécessite pas une authentification SSO : sa page d'authentication est ouverte à tous"
  49. },
  50. "default": false
  51. },
  52. {
  53. "name": "language",
  54. "type": "string",
  55. "ask": {
  56. "en": "Choose the application language",
  57. "fr": "Choisissez la langue de l'application"
  58. },
  59. "choices": ["en_GB", "en_US", "cz_CN", "cs_CZ", "fr_FR", "ko_KR", "ja_JP", "nb_NO", "pl_PL", "pt_BR", "pt_PT", "ru_RU", "sk_SK", "tr_TR", "uk_UA"],
  60. "default": "en_US"
  61. },
  62. {
  63. "name": "admin",
  64. "type": "user"
  65. }
  66. ]
  67. }
  68. }