manifest.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "Pi-hole",
  3. "id": "pihole",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "Network-wide ad blocking via your own DNS server",
  7. "fr": "Filtrage publicitaire via votre propre serveur DNS"
  8. },
  9. "version": "5.9~ynh1",
  10. "url": "https://pi-hole.net/",
  11. "upstream": {
  12. "license": "EUPL-1.2",
  13. "website": "https://pi-hole.net/",
  14. "admindoc": "https://docs.pi-hole.net",
  15. "code": "https://github.com/pi-hole/pi-hole/"
  16. },
  17. "license": "EUPL-1.2",
  18. "maintainer": {
  19. "name": "",
  20. "email": ""
  21. },
  22. "previous_maintainers": [{
  23. "name": "Maniack Crudelis",
  24. "email": "maniackc_dev@crudelis.fr"
  25. }],
  26. "requirements": {
  27. "yunohost": ">= 4.3.0"
  28. },
  29. "multi_instance": false,
  30. "services": [
  31. "nginx",
  32. "php7.3-fpm"
  33. ],
  34. "arguments": {
  35. "install" : [
  36. {
  37. "name": "domain",
  38. "type": "domain"
  39. },
  40. {
  41. "name": "path",
  42. "type": "path",
  43. "example": "/pihole",
  44. "default": "/pihole"
  45. },
  46. {
  47. "name": "admin",
  48. "type": "user"
  49. },
  50. {
  51. "name": "query_logging",
  52. "type": "boolean",
  53. "ask": {
  54. "en": "Do you want to log DNS queries?",
  55. "fr": "Voulez-vous enregistrer les requêtes DNS ?"
  56. },
  57. "help": {
  58. "en": "Keeping this option deactivate will render graphs on the admin page useless. But will respect the privacy of the other users.",
  59. "fr": "Garder cette option désactivée rendra les graphiques sur la page d'administration inutiles. Mais respectera la vie privée des autres utilisateurs."
  60. },
  61. "default": false
  62. },
  63. {
  64. "name": "enable_dhcp",
  65. "type": "boolean",
  66. "ask": {
  67. "en": "Do you want to set Pi-Hole as your DHCP server?",
  68. "fr": "Voulez-vous utiliser Pi-Hole an tant que serveur DHCP ?"
  69. },
  70. "help": {
  71. "en": "If you want to do that, <a href=https://github.com/YunoHost-Apps/pihole_ynh/blob/master/dhcp.md target=_blank>you really have to read this before</a>!",
  72. "fr": "Si vous voulez faire ça, <a href=https://github.com/YunoHost-Apps/pihole_ynh/blob/master/dhcp.md target=_blank>vous devez vraiment lire cela avant</a> !"
  73. },
  74. "default": false
  75. }
  76. ]
  77. }
  78. }