ynh-vpnclient-loadcubefile.sh 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/bin/bash
  2. # VPN Client app for YunoHost
  3. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. # Contribute at https://github.com/labriqueinternet/vpnclient_ynh
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU Affero General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Affero General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Affero General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. # Options
  19. while getopts "u:p:c:h" opt; do
  20. case $opt in
  21. u)
  22. ynh_user=$OPTARG
  23. ;;
  24. p)
  25. ynh_password=$OPTARG
  26. ;;
  27. c)
  28. cubefile_path=$OPTARG
  29. if [ ! -r "${cubefile_path}" ]; then
  30. echo "[ERR] Cube file does not exist or is unreadable" >&2
  31. exit 1
  32. fi
  33. ;;
  34. h)
  35. echo "-u YunoHost username (user with permissions on VPN Client)"
  36. echo "-p User password"
  37. echo "-c Dot cube file path"
  38. echo "-h This help"
  39. exit 0
  40. ;;
  41. \?)
  42. echo "[ERR] Invalid option (-h for help)" >&2
  43. exit 1
  44. ;;
  45. esac
  46. done
  47. if [ -z "${cubefile_path}" ]; then
  48. echo "[ERR] Option -c is mandatory (-h for help)" >&2
  49. exit 1
  50. fi
  51. sudo yunohost app config set vpnclient --args "config_file=${cubefile_path}"