manifest.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "Zabbix",
  3. "id": "zabbix",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "YunoHost port for Zabbix",
  7. "fr": "Zabbix pour Yunohost"
  8. },
  9. "version": "2.0",
  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": ">= 2.7.14"
  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. "default": false
  65. },
  66. {
  67. "name": "language",
  68. "type": "string",
  69. "ask": {
  70. "en": "Choose the application language",
  71. "fr": "Choisissez la langue de l'application"
  72. },
  73. "choices": ["fr", "en"],
  74. "default": "en"
  75. }
  76. ]
  77. }
  78. }