manifest.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "Wifi Hotspot",
  3. "id": "hotspot",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "Wifi Hotspot",
  7. "fr": "Hotspot Wifi"
  8. },
  9. "url": "https://github.com/labriqueinternet/hotspot_ynh",
  10. "version": "1.1.0",
  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": ">= 2.2.0",
  19. "moulinette": ">= 2.4.0"
  20. },
  21. "multi_instance": false,
  22. "services": [
  23. "php5-fpm"
  24. ],
  25. "arguments": {
  26. "install" : [
  27. {
  28. "name": "domain",
  29. "type": "domain",
  30. "ask": {
  31. "en": "Choose a domain for the web administration",
  32. "fr": "Choisissez un domaine pour l'administration web"
  33. },
  34. "example": "domain.org"
  35. },
  36. {
  37. "name": "path",
  38. "type": "path",
  39. "ask": {
  40. "en": "Choose a path for the web administration",
  41. "fr": "Choisissez un chemin pour l'administration web"
  42. },
  43. "example": "/wifiadmin",
  44. "default": "/wifiadmin"
  45. },
  46. {
  47. "name": "wifi_ssid",
  48. "type": "string",
  49. "ask": {
  50. "en": "Choose a wifi name (SSID)",
  51. "fr": "Choisissez un nom pour le wifi (SSID)"
  52. },
  53. "example": "myNeutralNetwork",
  54. "default": "myNeutralNetwork"
  55. },
  56. {
  57. "name": "wifi_passphrase",
  58. "type": "password",
  59. "ask": {
  60. "en": "Choose a wifi password (at least 8 characters for WPA2)",
  61. "fr": "Choisissez un mot de passe wifi (au minimum 8 caractères pour le WPA2)"
  62. },
  63. "example": "VhegT8oev0jZI"
  64. },
  65. {
  66. "name": "firmware_nonfree",
  67. "type": "boolean",
  68. "choice": ["yes", "no"],
  69. "ask": {
  70. "en": "Install non-free firmwares - in addition to the free ones - for the wifi dongle (yes/no)",
  71. "fr": "Installer des firmwares non-libres (en plus des libres) pour la clé USB wifi (yes/no)"
  72. },
  73. "example": "yes",
  74. "default": "yes"
  75. }
  76. ]
  77. }
  78. }