1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hotspot_ynh.git synced 2024-09-03 19:25:53 +02:00
hotspot_ynh/manifest.json

79 lines
2.1 KiB
JSON
Raw Normal View History

2014-11-02 21:30:56 +01:00
{
"name": "Wifi Hotspot",
"id": "hotspot",
"packaging_format": 1,
2014-11-02 21:30:56 +01:00
"description": {
"en": "Wifi Hotspot",
"fr": "Hotspot Wifi"
},
"url": "https://github.com/labriqueinternet/hotspot_ynh",
"version": "1.1.0",
"license": "AGPL-3.0",
"maintainer": {
2014-11-02 21:30:56 +01:00
"name": "Julien Vaubourg",
"email": "julien@vaubourg.com",
"url": "http://julien.vaubourg.com"
},
"requirements": {
"yunohost": ">= 2.2.0",
"moulinette": ">= 2.4.0"
},
"multi_instance": false,
"services": [
"php5-fpm"
],
2014-11-02 21:30:56 +01:00
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for the web administration",
"fr": "Choisissez un domaine pour l'administration web"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for the web administration",
"fr": "Choisissez un chemin pour l'administration web"
},
"example": "/wifiadmin",
"default": "/wifiadmin"
},
2014-11-02 21:30:56 +01:00
{
"name": "wifi_ssid",
2019-02-09 13:32:28 +01:00
"type": "string",
2014-11-02 21:30:56 +01:00
"ask": {
2014-11-10 13:43:39 +01:00
"en": "Choose a wifi name (SSID)",
"fr": "Choisissez un nom pour le wifi (SSID)"
2014-11-02 21:30:56 +01:00
},
"example": "myNeutralNetwork",
"default": "myNeutralNetwork"
},
{
"name": "wifi_passphrase",
"type": "password",
2014-11-02 21:30:56 +01:00
"ask": {
"en": "Choose a wifi password (at least 8 characters for WPA2)",
"fr": "Choisissez un mot de passe wifi (au minimum 8 caractères pour le WPA2)"
2014-11-02 21:30:56 +01:00
},
"example": "VhegT8oev0jZI"
},
{
"name": "firmware_nonfree",
2019-02-10 01:13:58 +01:00
"type": "string",
"choice": ["yes", "no"],
"ask": {
"en": "Install non-free firmwares - in addition to the free ones - for the wifi dongle (yes/no)",
"fr": "Installer des firmwares non-libres (en plus des libres) pour la clé USB wifi (yes/no)"
},
"example": "yes",
"default": "yes"
2014-11-02 21:30:56 +01:00
}
]
}
}