freedomboneeee/src/freedombone

325 lines
8.4 KiB
Plaintext
Raw Normal View History

2015-01-16 20:46:15 +01:00
#!/bin/bash
#
# .---. . .
# | | |
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
#
# Freedom in the Cloud
#
# This install script is intended for use with Debian Jessie
#
# License
# =======
#
2016-10-31 17:24:49 +01:00
# Copyright (C) 2014-2016 Bob Mottram <bob@freedombone.net>
2015-01-16 20:46:15 +01:00
#
# This program is free software: you can redistribute it and/or modify
2016-02-13 23:09:27 +01:00
# it under the terms of the GNU Affero General Public License as published by
2015-01-16 20:46:15 +01:00
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2016-02-13 23:09:27 +01:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
2015-01-16 20:46:15 +01:00
#
2016-02-13 23:09:27 +01:00
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2015-01-16 20:46:15 +01:00
2015-01-16 22:05:12 +01:00
NO_OF_ARGS=$#
2015-11-27 12:42:16 +01:00
PROJECT_NAME='freedombone'
export TEXTDOMAIN=$PROJECT_NAME
export TEXTDOMAINDIR="/usr/share/locale"
2016-07-03 17:13:34 +02:00
PROJECT_INSTALL_DIR=/usr/local/bin
if [ -f /usr/bin/${PROJECT_NAME} ]; then
2016-09-29 10:59:19 +02:00
PROJECT_INSTALL_DIR=/usr/bin
2016-06-30 15:59:43 +02:00
fi
2016-07-05 16:48:36 +02:00
source $PROJECT_INSTALL_DIR/${PROJECT_NAME}-vars
2015-01-17 23:03:17 +01:00
2016-10-08 13:47:07 +02:00
UTILS_FILES=/usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-*
for f in $UTILS_FILES
do
source $f
done
APP_FILES=/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*
for f in $APP_FILES
do
source $f
done
command_options=$1
2015-12-31 14:21:46 +01:00
if [[ $command_options == "menuconfig-full" ]]; then
2016-09-29 10:59:19 +02:00
MINIMAL_INSTALL="no"
fi
2015-12-31 14:21:46 +01:00
if [[ $command_options == "menuconfig-onion" ]]; then
2016-09-29 10:59:19 +02:00
MINIMAL_INSTALL="yes"
ONION_ONLY="yes"
2015-12-31 14:21:46 +01:00
fi
2016-10-15 17:33:13 +02:00
if [ ! $CONFIGURATION_FILE ]; then
CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
fi
if [ ! $COMPLETION_FILE ]; then
COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
fi
# before the interactive config so that wifi adaptors may be detected
setup_wifi_atheros
2016-10-17 11:32:15 +02:00
if [[ $command_options == "menuconfig"* ]]; then
2016-10-15 18:13:22 +02:00
if [[ "$2" == "--reset" ]]; then
if [ -f $CONFIGURATION_FILE ]; then
rm $CONFIGURATION_FILE
fi
if [ -f $COMPLETION_FILE ]; then
rm $COMPLETION_FILE
fi
2016-10-17 19:13:28 +02:00
if [ -f /usr/share/${PROJECT_NAME}/installed.txt ]; then
rm /usr/share/${PROJECT_NAME}/installed.txt
fi
if [ -f /root/removed ]; then
rm /root/removed
fi
fi
# clear the interactive file which indicates configuration success
interactive_file=$HOME/.${PROJECT_NAME}-interactive
if [ -f $interactive_file ]; then
rm $interactive_file
fi
2016-09-29 10:59:19 +02:00
interactive_configuration
# check that the interactive file was created
if [ ! -f $interactive_file ]; then
exit 6393562
fi
rm $interactive_file
2015-01-17 23:03:17 +01:00
else
2016-09-29 10:59:19 +02:00
while [[ $# > 1 ]]
do
key="$1"
2016-06-18 15:14:54 +02:00
2016-09-29 10:59:19 +02:00
case $key in
-h|--help)
show_help
;;
# load a configuration file
-c|--config)
shift
CONFIGURATION_FILE="$1"
INSTALLING_FROM_CONFIGURATION_FILE="yes"
break
;;
# username within /home
-u|--user)
shift
MY_USERNAME="$1"
;;
# default domain name
-d|--domain)
shift
DEFAULT_DOMAIN_NAME="$1"
;;
# The type of system
-s|--system)
shift
SYSTEM_TYPE="$1"
;;
# The dynamic DNS provider
--ddns)
shift
DDNS_PROVIDER="$1"
;;
# Username for the synamic DNS provider
--ddnsuser)
shift
DDNS_USERNAME="$1"
;;
# Password for the synamic DNS provider
--ddnspass)
shift
DDNS_PASSWORD="$1"
;;
# Whether this installation is on a Beaglebone Black
--bbb)
INSTALLING_ON_BBB="yes"
;;
# Static IP address for the system
--ip)
shift
LOCAL_NETWORK_STATIC_IP_ADDRESS=$1
;;
# IP address for the internet router
--iprouter)
shift
ROUTER_IP_ADDRESS=$1
;;
# ssh port
--ssh)
shift
SSH_PORT=$1
;;
# public mailing list name
--list)
shift
PUBLIC_MAILING_LIST="$1"
;;
# Number of CPU cores
--cores)
shift
CPU_CORES=$1
;;
# my name
--name)
shift
MY_NAME="$1"
;;
# my email address
--email)
shift
MY_EMAIL_ADDRESS="$1"
;;
# USB drive
--usb)
shift
USB_DRIVE=$1
;;
# Enable B.A.T.M.A.N
--batman)
shift
ENABLE_BATMAN="yes"
;;
# Mumble server password
2016-09-29 10:59:19 +02:00
--vpass)
shift
MUMBLE_SERVER_PASSWORD=$1
2016-09-29 10:59:19 +02:00
;;
# Mumble server port
2016-09-29 10:59:19 +02:00
--vport)
shift
MUMBLE_PORT=$1
2016-09-29 10:59:19 +02:00
;;
# DNS Nameserver 1
--ns1)
shift
NAMESERVER1=$1
;;
# DNS Nameserver 2
--ns2)
shift
NAMESERVER2=$1
;;
# Debian repository
--repo)
shift
DEBIAN_REPO=$1
;;
2016-10-15 17:33:13 +02:00
# clear the config file
--reset)
if [ -f $CONFIGURATION_FILE ]; then
rm $CONFIGURATION_FILE
fi
if [ -f $COMPLETION_FILE ]; then
rm $COMPLETION_FILE
fi
;;
2016-09-29 10:59:19 +02:00
# minimal install
--minimal)
shift
MINIMAL_INSTALL=$1
;;
*)
# unknown option
;;
esac
shift
done
2015-01-17 23:03:17 +01:00
fi
2015-01-16 22:05:12 +01:00
2015-01-16 20:46:15 +01:00
function parse_args {
2016-09-29 10:59:19 +02:00
if [[ $NO_OF_ARGS == 0 ]]; then
echo 'no_of_args = 0'
show_help
exit 0
fi
2016-06-18 15:14:54 +02:00
2016-10-08 13:47:07 +02:00
read_config_param 'DEFAULT_DOMAIN_NAME'
read_config_param 'MY_USERNAME'
read_config_param 'SYSTEM_TYPE'
2016-10-08 19:21:43 +02:00
read_config_param 'ONION_ONLY'
2016-10-08 13:47:07 +02:00
2016-09-29 10:59:19 +02:00
if [ ! -d /home/$MY_USERNAME ]; then
echo $"There is no user '$MY_USERNAME' on the system. Use 'adduser $MY_USERNAME' to create the user."
exit 1
fi
if [ ! "$DEFAULT_DOMAIN_NAME" ]; then
2016-10-08 20:32:04 +02:00
if [[ $SYSTEM_TYPE != "mesh"* ]]; then
2016-09-29 10:59:19 +02:00
echo 'No default domain specified'
show_help
exit 2
fi
fi
if [ ! $MY_USERNAME ]; then
echo 'No username specified'
show_help
exit 3
fi
2016-10-08 20:32:04 +02:00
if [[ $SYSTEM_TYPE != "mesh"* ]]; then
2016-09-29 10:59:19 +02:00
if [[ $ONION_ONLY == "no" ]]; then
if [ ! $DDNS_USERNAME ]; then
echo $'Please provide the username for your dynamic DNS provider with the --ddnsuser option'
exit 7823
fi
if [ ! $DDNS_PASSWORD ]; then
echo $'Please provide the password for your dynamic DNS provider with the --ddnspass option'
exit 6382
fi
fi
fi
2016-10-08 20:32:04 +02:00
2016-09-29 10:59:19 +02:00
if [ ! $SYSTEM_TYPE ]; then
2016-10-08 20:32:04 +02:00
SYSTEM_TYPE=$'full'
2016-10-09 12:02:11 +02:00
write_config_param "SYSTEM_TYPE" "$SYSTEM_TYPE"
2016-09-29 10:59:19 +02:00
fi
2016-10-08 20:32:04 +02:00
if [[ $(is_valid_variant) == "0" ]]; then
2016-10-08 20:55:21 +02:00
echo $"'$SYSTEM_TYPE' is an unrecognised ${PROJECT_NAME} variant. Possible variants are:"
show_available_variants
2016-10-08 20:32:04 +02:00
exit 367245
2016-09-29 10:59:19 +02:00
fi
2015-01-16 20:46:15 +01:00
}
# run some initial tests
2016-10-20 10:40:07 +02:00
clear
${PROJECT_NAME}-tests
if [ ! "$?" = "0" ]; then
2016-09-29 10:59:19 +02:00
exit 768252
fi
2016-10-20 10:40:07 +02:00
clear
echo ''
echo $'Setting up the base installation'
echo ''
2016-10-23 20:38:14 +02:00
export DEBIAN_FRONTEND=noninteractive
2016-09-29 10:59:19 +02:00
upgrade_installation_from_previous_versions
2016-07-03 20:21:47 +02:00
setup_utils
2016-07-03 17:13:34 +02:00
setup_email
setup_web
setup_apps $command_options
2016-07-03 17:13:34 +02:00
setup_final
2016-06-18 15:14:54 +02:00
2015-12-29 17:42:35 +01:00
echo "${PROJECT_NAME} installation is complete"
2015-01-16 20:46:15 +01:00
exit 0