manifest.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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~ynh1",
  10. "url": "https://www.zabbix.com",
  11. "license": " LGPL-2.0-or-later",
  12. "maintainer": {
  13. "name": "Mickael Martin",
  14. "email": "mickael@librement-votre.fr",
  15. "url": "http://www.librement-votre.fr"
  16. },
  17. "requirements": {
  18. "yunohost": ">= 4.1.3"
  19. },
  20. "multi_instance": false,
  21. "services": [
  22. "nginx",
  23. "php7.3-fpm",
  24. "mysql"
  25. ],
  26. "arguments": {
  27. "install" : [
  28. {
  29. "name": "domain",
  30. "type": "domain",
  31. "example": "example.com"
  32. },
  33. {
  34. "name": "path",
  35. "type": "path",
  36. "example": "/zabbix",
  37. "default": "/zabbix"
  38. },
  39. {
  40. "name": "admin",
  41. "type": "user",
  42. "example": "johndoe"
  43. },
  44. {
  45. "name": "is_public",
  46. "type": "boolean",
  47. "default": false
  48. },
  49. {
  50. "name": "language",
  51. "type": "string",
  52. "ask": {
  53. "en": "Choose the application language",
  54. "fr": "Choisissez la langue de l'application"
  55. },
  56. "choices": ["fr_FR", "en_GB"],
  57. "default": "en_GB"
  58. }
  59. ]
  60. }
  61. }