manifest.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "Zabbix",
  3. "id": "zabbix",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "A monitoring tool for diverse IT components, including networks, servers, VMs and cloud services.",
  7. "fr": "Un outil pour monitorer des réseaux, des serveurs, des VMs et autres services en ligne"
  8. },
  9. "version": "4.4~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": "Mickael Martin",
  20. "email": "mickael@librement-votre.fr",
  21. "url": "http://www.librement-votre.fr"
  22. },
  23. "requirements": {
  24. "yunohost": ">= 4.1.3"
  25. },
  26. "multi_instance": false,
  27. "services": [
  28. "nginx",
  29. "php7.3-fpm",
  30. "mysql"
  31. ],
  32. "arguments": {
  33. "install" : [
  34. {
  35. "name": "domain",
  36. "type": "domain",
  37. "example": "example.com"
  38. },
  39. {
  40. "name": "path",
  41. "type": "path",
  42. "example": "/zabbix",
  43. "default": "/zabbix"
  44. },
  45. {
  46. "name": "admin",
  47. "type": "user",
  48. "example": "mickael"
  49. },
  50. {
  51. "name": "is_public",
  52. "type": "boolean",
  53. "help": {
  54. "en": "A public app doesn't need SSO auth : the auth page is opened for everyone",
  55. "fr": "Une application publique ne nécessite pas une authentification SSO : sa page d'authentication est ouverte au monde entier"
  56. },
  57. "default": false
  58. },
  59. {
  60. "name": "language",
  61. "type": "string",
  62. "ask": {
  63. "en": "Choose the application language",
  64. "fr": "Choisissez la langue de l'application"
  65. },
  66. "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"],
  67. "default": "en_US"
  68. }
  69. ]
  70. }
  71. }