freedombone/src/freedombone-image

223 lines
5.3 KiB
Plaintext
Raw Normal View History

#!/bin/bash
#
# .---. . .
# | | |
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
#
# Freedom in the Cloud
#
# Creates a debian image using vmdebootstrap
#
# License
# =======
#
# Copyright (C) 2015 Bob Mottram <bob@robotics.uk.to>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# 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
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
PROJECT_NAME='freedombone'
2015-11-20 22:43:03 +01:00
IMAGE_TYPE='beaglebone'
CURR_DIR=$(pwd)
2015-11-22 00:27:17 +01:00
CURR_USER=$(echo $USER)
BUILD_DIR=~/.tmp_${PROJECT_NAME}_build
2015-11-20 22:43:03 +01:00
VMDEBOOTSTRAP_REPO=git://git.liw.fi/vmdebootstrap
VMDEBOOTSTRAP_VERSION=0.8
MAKEFILE=${PROJECT_NAME}-image-makefile
2015-11-21 14:16:49 +01:00
IMAGE_SIZE=4G
2015-11-20 22:43:03 +01:00
USERNAME=$(echo $USER)
PASSWORD=
2015-11-20 22:43:03 +01:00
# IP address of the router (gateway)
ROUTER_IP_ADDRESS="192.168.1.254"
# The fixed IP address of the Beaglebone Black (or other SBC) on your local network
BOX_IP_ADDRESS="192.168.1.55"
# DNS
NAMESERVER1='213.73.91.35'
NAMESERVER2='85.214.20.141'
# An optional freedombone configuration file
CONFIG_FILENAME=
DEFAULT_DOMAIN_NAME="${PROJECT_NAME}.local"
2015-11-21 15:11:34 +01:00
# Minimum number of characters in a password
MINIMUM_PASSWORD_LENGTH=10
# Optional ssh public key to allow
SSH_PUBKEY="no"
2015-11-21 16:44:59 +01:00
# interactive mode
INTERACTIVE="no"
2015-11-20 22:43:03 +01:00
while [[ $# > 1 ]]
do
key="$1"
case $key in
-h|--help)
show_help
;;
-c|--config)
shift
CONFIG_FILENAME="$1"
if [ ! -f $CONFIG_FILENAME ]; then
echo "Config file $CONFIG_FILENAME not found"
exit 3
fi
DEFAULT_DOMAIN_NAME=$(cat $CONFIG_FILENAME | grep 'DEFAULT_DOMAIN_NAME' | awk -F '=' '{print $2}')
;;
2015-11-20 22:43:03 +01:00
-t|--target|--board)
shift
IMAGE_TYPE="$1"
;;
-u|--user|--username)
shift
USERNAME="$1"
;;
-p|--password)
shift
PASSWORD="$1"
2015-11-21 15:11:34 +01:00
if [ ${#PASSWORD} -lt $MINIMUM_PASSWORD_LENGTH ]; then
echo "Your password chould contain at least ${MINIMUM_PASSWORD_LENGTH} characters"
exit 3628
fi
2015-11-20 22:43:03 +01:00
;;
--sshkey|--sshpubkey|--pubkey)
shift
SSH_PUBKEY="$1"
;;
2015-11-21 14:16:49 +01:00
-s|--size)
shift
IMAGE_SIZE="$1"
;;
2015-11-20 22:43:03 +01:00
# Box static IP address on the LAN
--ip)
shift
BOX_IP_ADDRESS="$1"
;;
# Router IP address on the LAN
--iprouter)
shift
ROUTER_IP_ADDRESS="$1"
;;
# nameserver 1
--ns1|--nameserver1)
shift
NAMESERVER1="$1"
;;
# nameserver 2
--ns2|--nameserver2)
shift
NAMESERVER2="$1"
;;
2015-11-21 16:44:59 +01:00
-i|--interactive)
shift
INTERACTIVE="$1"
;;
2015-11-20 22:43:03 +01:00
*)
# unknown option
;;
esac
shift
done
2015-11-21 16:44:59 +01:00
if [[ $INTERACTIVE == "yes" || $INTERACTIVE == "y" || $INTERACTIVE == "Yes" ]]; then
freedombone-config
if [ -f freedombone.cfg ]; then
CONFIG_FILENAME=freedombone.cfg
DEFAULT_DOMAIN_NAME=$(cat $CONFIG_FILENAME | grep 'DEFAULT_DOMAIN_NAME' | awk -F '=' '{print $2}')
fi
fi
if [ ! $PASSWORD ]; then
# generate a random password
PASSWORD="$(openssl rand -base64 10 | cut -c1-8)"
fi
2015-11-20 22:43:03 +01:00
2015-11-22 00:27:17 +01:00
rm $CURR_DIR/${PROJECT_NAME}*.img.bz2
rm $CURR_DIR/${PROJECT_NAME}*.img
rm $CURR_DIR/${PROJECT_NAME}*.sig
rm $CURR_DIR/${PROJECT_NAME}*.vdi
if [ -d $BUILD_DIR ]; then
2015-11-20 22:43:03 +01:00
rm -rf $BUILD_DIR
fi
mkdir -p $BUILD_DIR
2015-11-20 22:43:03 +01:00
if [ -f /usr/local/bin/$MAKEFILE ]; then
cp /usr/local/bin/$MAKEFILE $BUILD_DIR/Makefile
else
2015-11-20 22:43:03 +01:00
cp /usr/bin/$MAKEFILE $BUILD_DIR/Makefile
fi
cp -r /etc/${PROJECT_NAME}/* $BUILD_DIR
2015-11-22 00:27:17 +01:00
chown -R $CURR_USER:$CURR_USER $BUILD_DIR
cd $BUILD_DIR
cd $BUILD_DIR
2015-11-20 22:43:03 +01:00
make $IMAGE_TYPE \
USERNAME="$USERNAME" \
PASSWORD="$PASSWORD" \
ROUTER_IP_ADDRESS="$ROUTER_IP_ADDRESS" \
BOX_IP_ADDRESS="$BOX_IP_ADDRESS" \
NAMESERVER1="$NAMESERVER1" \
NAMESERVER2="$NAMESERVER2" \
PROJECT_NAME="$PROJECT_NAME" \
2015-11-21 14:16:49 +01:00
CONFIG_FILENAME="$CONFIG_FILENAME" \
IMAGE_SIZE="$IMAGE_SIZE" \
2015-11-21 16:44:59 +01:00
SSH_PUBKEY="$SSH_PUBKEY"
2015-11-20 22:43:03 +01:00
2015-11-21 11:29:10 +01:00
shopt -s nullglob
imgfiles=(build/${PROJECT_NAME}*.img)
2015-11-21 11:29:10 +01:00
if [ ${#imgfiles[@]} -eq 0 ]; then
echo 'Image was not created'
rm -rf $BUILD_DIR
exit 1
2015-11-21 11:29:10 +01:00
fi
2015-11-21 18:47:47 +01:00
mv build/${PROJECT_NAME}*.bz2 ${CURR_DIR}
mv build/${PROJECT_NAME}*.img ${CURR_DIR}
mv build/${PROJECT_NAME}*.sig ${CURR_DIR}
2015-11-22 00:27:17 +01:00
mv build/${PROJECT_NAME}*.vdi ${CURR_DIR}
2015-11-21 21:41:58 +01:00
rm -rf ${BUILD_DIR}
cd ${CURR_DIR}
2015-11-22 00:27:17 +01:00
#if [[ $IMAGE_TYPE == "virtualbox"* ]]; then
# imgfiles=(${PROJECT_NAME}*.img)
# VBoxManage convertdd ${imgfiles[0]} ${imgfiles[0]}.vdi
#fi
2015-11-21 11:29:10 +01:00
clear
echo "
Image was created.
You will be able to log into it with:
ssh $USERNAME@$DEFAULT_DOMAIN_NAME -p 2222
Password: $PASSWORD
"
2015-11-22 13:11:15 +01:00
ls -lh ${PROJECT_NAME}*.img ${PROJECT_NAME}*.sig ${PROJECT_NAME}*.bz2 ${PROJECT_NAME}*.vdi
2015-11-21 11:29:10 +01:00
# record the default login credentials for later use
echo "Username: $USERNAME
2015-11-21 18:47:47 +01:00
Password: $PASSWORD" > ${CURR_DIR}/${PROJECT_NAME}_login_credentials.txt
chmod 600 ${CURR_DIR}/${PROJECT_NAME}_login_credentials.txt
exit 0