manifest.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "Wifi Hotspot",
  3. "id": "hotspot",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "Create and manager wifi networks, share Internet access and use Yunohost apps accross wifi",
  7. "fr": "Créer et configurer des réseaux wifi, partager l'accès a Internet et utiliser les applications Yunohost via wifi"
  8. },
  9. "version": "1.2.0~ynh4",
  10. "url": "https://github.com/labriqueinternet/hotspot_ynh",
  11. "license": "AGPL-3.0",
  12. "maintainer": {
  13. "name": "Julien Vaubourg",
  14. "email": "julien@vaubourg.com",
  15. "url": "http://julien.vaubourg.com"
  16. },
  17. "requirements": {
  18. "yunohost": ">= 4.1.0"
  19. },
  20. "multi_instance": false,
  21. "services": [
  22. "nginx",
  23. "php7.0-fpm"
  24. ],
  25. "arguments": {
  26. "install" : [
  27. {
  28. "name": "domain",
  29. "type": "domain",
  30. "example": "domain.org"
  31. },
  32. {
  33. "name": "path",
  34. "type": "path",
  35. "default": "/wifiadmin"
  36. },
  37. {
  38. "name": "wifi_ssid",
  39. "type": "string",
  40. "ask": {
  41. "en": "Choose a wifi name (SSID)",
  42. "fr": "Choisissez un nom pour le wifi (SSID)"
  43. },
  44. "example": "myNeutralNetwork",
  45. "default": "myNeutralNetwork"
  46. },
  47. {
  48. "name": "wifi_passphrase",
  49. "type": "password",
  50. "ask": {
  51. "en": "Choose a wifi password (at least 8 characters for WPA2)",
  52. "fr": "Choisissez un mot de passe wifi (au minimum 8 caractères pour le WPA2)"
  53. },
  54. "example": "VhegT8oev0jZI"
  55. },
  56. {
  57. "name": "firmware_nonfree",
  58. "type": "string",
  59. "ask": {
  60. "en": "Install non-free firmwares - in addition to the free ones - for the wifi dongle (yes/no)",
  61. "fr": "Installer des firmwares non-libres (en plus des libres) pour la clé USB wifi (yes/no)"
  62. },
  63. "choice": [ "yes", "no" ],
  64. "default": "no"
  65. }
  66. ]
  67. }
  68. }