manifest.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "VPN Client",
  3. "id": "vpnclient",
  4. "version": "1.2.1",
  5. "packaging_format": 1,
  6. "description": {
  7. "en": "VPN Client",
  8. "fr": "Client VPN"
  9. },
  10. "url": "https://github.com/labriqueinternet/vpnclient_ynh",
  11. "license": "AGPL-3.0",
  12. "maintainer": {
  13. "name": "pitchum",
  14. "email": "pitchum@users.noreply.github.com"
  15. },
  16. "requirements": {
  17. "yunohost": ">= 2.2.0",
  18. "moulinette": ">= 2.4.0"
  19. },
  20. "multi_instance": false,
  21. "services": [
  22. "nginx",
  23. "php5-fpm",
  24. "ynh-vpnclient"
  25. ],
  26. "arguments": {
  27. "install": [
  28. {
  29. "name": "domain",
  30. "type": "domain",
  31. "ask": {
  32. "en": "Choose a domain for the web administration",
  33. "fr": "Choisissez un domaine pour l'administration web"
  34. },
  35. "example": "domain.org"
  36. },
  37. {
  38. "name": "path",
  39. "type": "path",
  40. "ask": {
  41. "en": "Choose a path for the web administration",
  42. "fr": "Choisissez un chemin pour l'administration web"
  43. },
  44. "example": "/vpnadmin",
  45. "default": "/vpnadmin"
  46. }
  47. ]
  48. }
  49. }