manifest.json 1.9 KB

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