add initial script and manifest

This commit is contained in:
Jeremy MANSON
2016-07-13 09:15:32 +02:00
committed by GitHub
parent 3e1ea6ef85
commit 5202665ee9
2 changed files with 202 additions and 0 deletions

57
manifest.json Normal file
View File

@ -0,0 +1,57 @@
{
"name": "guacamole",
"id": "guacamole",
"packaging_format": 1,
"description": {
"en": "Guacamole is a clientless remote desktop gateway",
"fr": "Guacamole est une passerelle de bureau à distance clientless"
},
"url": "https://guacamole.incubator.apache.org/",
"license": "free",
"maintainer": {
"name": "Jeremy MANSON",
"email": "jeremy.manson@jmanson.fr",
"url": "https://www.jmanson.fr"
},
"requirements": {
"yunohost": ">> 2.3.12.1"
},
"multi_instance": false,
"services": [
"nginx",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for Guacamole",
"fr": "Choisissez un nom de domaine pour Guacamole"
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for Guacamole",
"fr": "Choisissez un chemin pour Guacamole"
},
"example": "/Guacamole",
"default": "/Guacamole"
},
{
"name": "admin",
"type": "user",
"ask": {
"en": "Choose an admin user",
"fr": "Choisissez ladministrateur"
},
"example": "johndoe"
}
]
}
}