manifest.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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~ynh6",
  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. "upstream": {
  18. "license": "AGPL-3.0",
  19. "website": "https://internetcu.be/"
  20. },
  21. "requirements": {
  22. "yunohost": ">= 4.2.8"
  23. },
  24. "multi_instance": false,
  25. "services": [],
  26. "arguments": {
  27. "install" : [
  28. {
  29. "name": "wifi_ssid",
  30. "type": "string",
  31. "ask": {
  32. "en": "Choose a wifi name (SSID)",
  33. "fr": "Choisissez un nom pour le wifi (SSID)"
  34. },
  35. "example": "myNeutralNetwork",
  36. "default": "myNeutralNetwork"
  37. },
  38. {
  39. "name": "wifi_passphrase",
  40. "type": "password",
  41. "ask": {
  42. "en": "Choose a wifi password (at least 8 characters for WPA2)",
  43. "fr": "Choisissez un mot de passe wifi (au minimum 8 caractères pour le WPA2)"
  44. }
  45. },
  46. {
  47. "name": "firmware_nonfree",
  48. "type": "boolean",
  49. "ask": {
  50. "en": "Install non-free firmwares - in addition to the free ones - for the wifi dongle",
  51. "fr": "Installer des firmwares non-libres (en plus des libres) pour la clé USB wifi"
  52. },
  53. "default": false
  54. }
  55. ]
  56. }
  57. }