freedombone-utils-help 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Show help
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2014-2016 Bob Mottram <bob@freedombone.net>
  17. #
  18. # This program is free software: you can redistribute it and/or modify
  19. # it under the terms of the GNU Affero General Public License as published by
  20. # the Free Software Foundation, either version 3 of the License, or
  21. # (at your option) any later version.
  22. #
  23. # This program is distributed in the hope that it will be useful,
  24. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. # GNU Affero General Public License for more details.
  27. #
  28. # You should have received a copy of the GNU Affero General Public License
  29. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  30. function show_help {
  31. echo ''
  32. echo $"${PROJECT_NAME} -c [configuration file]"
  33. echo ''
  34. echo $' -h --help Show help'
  35. echo $' menuconfig Easy interactive installation'
  36. echo $' menuconfig-full Full interactive installation'
  37. echo $' menuconfig-onion Interactive installation for onion-only sites'
  38. echo $' -c --config Installing from a configuration file'
  39. echo $' --bbb Installing on Beaglebone Black'
  40. echo $' -u --user User to install the system as'
  41. echo $' -d --domain Default domain name'
  42. echo $' -s --system System type'
  43. echo $' --ip Static LAN IP address of the system'
  44. echo $' --iprouter LAN IP address of the internet router'
  45. echo $' --ddns Dynamic DNS provider domain'
  46. echo $' --ddnsuser Dynamic DNS provider username'
  47. echo $' --ddnspass Dynamic DNS provider password'
  48. echo ''
  49. echo $' -t --time Domain used as a TLS time source'
  50. echo $' --ssh ssh port number'
  51. echo $' --list Public mailing list name'
  52. echo $' --cores Number of CPU cores'
  53. echo $' --name Your name'
  54. echo $' --email Your email address'
  55. echo $' --usb Path for the USB drive (eg. /dev/sdb1)'
  56. echo $' --vpass Mumble server password'
  57. echo $' --vport Mumble server port'
  58. echo $' --ns1 First DNS nameserver'
  59. echo $' --ns2 Second DNS nameserver'
  60. echo $' --repo Debian repository'
  61. echo ''
  62. echo 'Possible variants are:'
  63. show_available_variants
  64. exit 0
  65. }
  66. # NOTE: deliberately no exit 0