manifest.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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": "free",
  12. "maintainer": {
  13. "name": "Mickael Martin",
  14. "email": "mickael@librement-votre.fr",
  15. "url": "http://www.librement-votre.fr"
  16. },
  17. "requirements": {
  18. "yunohost": ">= 3.6.5"
  19. },
  20. "multi_instance": false,
  21. "services": [
  22. "nginx",
  23. "mysql",
  24. "php7.0-fpm",
  25. "snmpd"
  26. ],
  27. "arguments": {
  28. "install" : [
  29. {
  30. "name": "domain",
  31. "type": "domain",
  32. "ask": {
  33. "en": "Choose a domain name for Zabbix",
  34. "fr": "Choisissez un nom de domaine pour Zabbix"
  35. },
  36. "example": "example.com"
  37. },
  38. {
  39. "name": "path",
  40. "type": "path",
  41. "ask": {
  42. "en": "Choose a path for Zabbix",
  43. "fr": "Choisissez un chemin pour Zabbix"
  44. },
  45. "example": "/zabbix",
  46. "default": "/zabbix"
  47. },
  48. {
  49. "name": "admin",
  50. "type": "user",
  51. "ask": {
  52. "en": "Choose an admin user",
  53. "fr": "Choisissez l’administrateur"
  54. },
  55. "example": "mickael"
  56. },
  57. {
  58. "name": "is_public",
  59. "type": "boolean",
  60. "ask": {
  61. "en": "Is it a public application?",
  62. "fr": "Est-ce une application publique ?"
  63. },
  64. "help": {
  65. "en": "A public app doesn't need SSO auth : the auth page is opened for everyone",
  66. "fr": "Une application publique ne nécessite pas une authentification SSO : sa page d'authentication est ouverte au monde entier"
  67. },
  68. "default": false
  69. },
  70. {
  71. "name": "language",
  72. "type": "string",
  73. "ask": {
  74. "en": "Choose the application language",
  75. "fr": "Choisissez la langue de l'application"
  76. },
  77. "choices": ["fr", "en"],
  78. "default": "en"
  79. }
  80. ]
  81. }
  82. }