freedombone-vars 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Common variables and functions
  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. DEFAULT_LANGUAGE=$(echo $LANG)
  31. if [ ! $PROJECT_NAME ]; then
  32. PROJECT_NAME='freedombone'
  33. fi
  34. PROJECT_INSTALL_DIR=/usr/local/bin
  35. if [ -f /usr/bin/${PROJECT_NAME} ]; then
  36. PROJECT_INSTALL_DIR=/usr/bin
  37. fi
  38. # username created by default within a debian image
  39. GENERIC_IMAGE_USERNAME='fbone'
  40. # Web site
  41. PROJECT_WEBSITE="http://${PROJECT_NAME}.uk.to"
  42. # Repo
  43. PROJECT_REPO="https://github.com/bashrc/${PROJECT_NAME}"
  44. # Are we installing on a Beaglebone Black (BBB) or some other system?
  45. INSTALLING_ON_BBB="no"
  46. # Version number of this script
  47. VERSION="3.00"
  48. # if yes then this minimises the number of descisions presented during install
  49. MINIMAL_INSTALL="yes"
  50. # Whether web sites will be .onion addresses only
  51. ONION_ONLY="no"
  52. # whether the system is being installed from a pre-created configuration file
  53. INSTALLING_FROM_CONFIGURATION_FILE="no"
  54. # number of CPU cores
  55. CPU_CORES=1
  56. # whether to route outgoing traffic through Tor
  57. ROUTE_THROUGH_TOR="no"
  58. # Whether this system is being installed within a docker container
  59. INSTALLED_WITHIN_DOCKER="no"
  60. DEBIAN_VERSION="stretch"
  61. # social key management
  62. ENABLE_SOCIAL_KEY_MANAGEMENT="no"
  63. # Whether this is a dedicated gnusocial or postactiv instance
  64. SOCIALINSTANCE=
  65. # include utils
  66. UTILS_FILES=/usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-*
  67. for f in $UTILS_FILES
  68. do
  69. source $f
  70. done
  71. # include base system apps
  72. BASE_SYSTEM_FILES=/usr/share/${PROJECT_NAME}/base/${PROJECT_NAME}-base-*
  73. for f in $BASE_SYSTEM_FILES
  74. do
  75. source $f
  76. done
  77. #include apps
  78. APP_FILES=/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*
  79. for f in $APP_FILES
  80. do
  81. source $f
  82. done
  83. # optionally specify your name to appear on the blog
  84. MY_NAME=$DEFAULT_DOMAIN_NAME
  85. # used to select mesh install functions when creating a mesh image
  86. INSTALLING_MESH=
  87. # The .local avahi name
  88. LOCAL_NAME=${PROJECT_NAME}
  89. # NOTE: deliberately there is no "exit 0"