manifest.json 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. "name": "add_nonfree",
  78. "type": "boolean",
  79. "ask": {
  80. "en": "This application can install snmp-mibs-downloader from non-free repository to resolve many OID by default, do you want install this package ?",
  81. "fr": "Cette application peut installer snmp-mibs-downloader depuis le dépôt non-free afin de resoudre de nombreux OID par defaut, souhaitez vous installer ce package ?"
  82. },
  83. "help": {
  84. "en" : "Zabbix works without problem without the package snmp-mibs-downloader, however it help to resolve OIDs to comprehensive strings. If you make the choice of installing it, the pinning method is used",
  85. "fr" : "Zabbix peut fonctionner sans le paquet snmp-mibs-downloader, cependant il aide à faire la résolution des OIDs en chaines de caractères compréhensibles. Si vous faites le choix de l'installer, il sera installé par méthode 'pinning'"
  86. },
  87. "default": false
  88. }
  89. ]
  90. }
  91. }