manifest.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.13~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. {
  24. "name": "Maniack Crudelis",
  25. "email": "maniackc_dev@crudelis.fr"
  26. }
  27. ],
  28. "requirements": {
  29. "yunohost": ">= 11.0.9"
  30. },
  31. "multi_instance": false,
  32. "services": [
  33. "nginx",
  34. "php7.4-fpm"
  35. ],
  36. "arguments": {
  37. "install": [
  38. {
  39. "name": "domain",
  40. "type": "domain"
  41. },
  42. {
  43. "name": "path",
  44. "type": "path",
  45. "example": "/pihole",
  46. "default": "/pihole"
  47. },
  48. {
  49. "name": "admin",
  50. "type": "user"
  51. },
  52. {
  53. "name": "query_logging",
  54. "type": "boolean",
  55. "ask": {
  56. "en": "Do you want to log DNS queries?",
  57. "fr": "Voulez-vous enregistrer les requêtes DNS ?"
  58. },
  59. "help": {
  60. "en": "Keeping this option deactivate will render graphs on the admin page useless. But will respect the privacy of the other users.",
  61. "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."
  62. },
  63. "default": false
  64. },
  65. {
  66. "name": "enable_dhcp",
  67. "type": "boolean",
  68. "ask": {
  69. "en": "Do you want to set Pi-Hole as your DHCP server?",
  70. "fr": "Voulez-vous utiliser Pi-Hole an tant que serveur DHCP ?"
  71. },
  72. "help": {
  73. "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>!",
  74. "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> !"
  75. },
  76. "default": false
  77. }
  78. ]
  79. }
  80. }