manifest.json 1.1 KB

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