manifest.toml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
  2. packaging_format = 2
  3. id = "hotspot"
  4. name = "Wifi Hotspot"
  5. description.en = "Create and configure a WiFi hotspot"
  6. description.fr = "Créez et gérez un point d'accès WiFi"
  7. version = "2.3.1~ynh1"
  8. maintainers = []
  9. [upstream]
  10. license = "AGPL-3.0"
  11. website = "https://internetcu.be/"
  12. [integration]
  13. yunohost = ">= 11.2.7"
  14. architectures = "all"
  15. multi_instance = true
  16. ldap = "not_relevant"
  17. sso = "not_relevant"
  18. disk = "50M"
  19. ram.build = "50M"
  20. ram.runtime = "50M"
  21. [install]
  22. [install.wifi_ssid]
  23. ask.en = "Choose a wifi name (SSID)"
  24. ask.fr = "Choisissez un nom pour le wifi (SSID)"
  25. type = "string"
  26. example = "myNeutralNetwork"
  27. default = "myNeutralNetwork"
  28. [install.wifi_passphrase]
  29. ask.en = "Choose a wifi password (at least 8 characters for WPA2)"
  30. ask.fr = "Choisissez un mot de passe wifi (au minimum 8 caractères pour le WPA2)"
  31. type = "password"
  32. [install.firmware_nonfree]
  33. ask.en = "Install non-free WiFi firmwares? (Only needed if you're using a proprietary WiFi antenna/dongle)"
  34. ask.fr = "Installer des firmwares WiFi non-libres ? (Nécessaire seulement si vous utilisez une antenne/clé WiFi propriétaire)"
  35. type = "boolean"
  36. default = false
  37. [resources]
  38. [resources.system_user]
  39. [resources.permissions]
  40. [resources.apt]
  41. packages = "sipcalc, hostapd, iw, kmod"
  42. packages_from_raw_bash = '[[ "$firmware_nonfree" -eq 0 ]] && echo "firmware-ath9k-htc" || true'
  43. [resources.apt.extras.nonfree]
  44. repo = "deb http://deb.debian.org/debian bullseye non-free"
  45. key = "https://ftp-master.debian.org/keys/archive-key-11.asc"
  46. packages_from_raw_bash = """
  47. # Proprietary USB Wireless Device firmwares, based on https://wiki.debian.org/WiFi#USB_Devices
  48. if [[ "$firmware_nonfree" -eq 1 ]]; then
  49. # if armbian-firmware is detected, we dont include ra-link which is known to conflict....
  50. if dpkg --list | grep -q armbian-firmware; then
  51. echo "firmware-atheros firmware-realtek firmware-libertas atmel-firmware firmware-zd1211"
  52. else
  53. echo "firmware-atheros firmware-realtek firmware-ralink firmware-libertas atmel-firmware firmware-zd1211"
  54. fi
  55. else
  56. echo " "
  57. fi"""