2015-11-21 00:54:24 +01:00
|
|
|
#!/bin/bash
|
2015-11-20 17:09:21 +01:00
|
|
|
#
|
2015-11-21 12:25:32 +01:00
|
|
|
# .---. . .
|
|
|
|
# | | |
|
|
|
|
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
|
|
|
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|
|
|
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
|
|
#
|
|
|
|
# Freedom in the Cloud
|
|
|
|
#
|
2015-11-20 17:09:21 +01:00
|
|
|
# Based on bin/freedombox-customize from freedom-maker
|
|
|
|
#
|
2015-11-21 12:25:32 +01:00
|
|
|
# License
|
|
|
|
# =======
|
|
|
|
#
|
2015-11-20 17:09:21 +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-11-20 17:09:21 +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
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2016-02-13 23:09:27 +01:00
|
|
|
# GNU Affero General Public License for more details.
|
2015-11-20 17:09:21 +01:00
|
|
|
#
|
2016-02-13 23:09:27 +01:00
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
2015-11-20 17:09:21 +01:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
2015-11-21 12:56:40 +01:00
|
|
|
PROJECT_NAME='freedombone'
|
2017-06-22 13:34:07 +02:00
|
|
|
LOCAL_NAME=${PROJECT_NAME}
|
2016-01-14 19:00:25 +01:00
|
|
|
INSTALL_DIR=/root/build
|
2016-01-16 15:51:35 +01:00
|
|
|
COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
|
2015-11-27 12:42:16 +01:00
|
|
|
|
2016-01-25 18:45:37 +01:00
|
|
|
PROJECT_REPO="https://github.com/bashrc/${PROJECT_NAME}"
|
|
|
|
|
2016-05-28 14:42:50 +02:00
|
|
|
VARIANT='full'
|
|
|
|
|
2015-12-03 15:40:38 +01:00
|
|
|
# username created by default within a debian image
|
|
|
|
GENERIC_IMAGE_USERNAME='fbone'
|
|
|
|
|
2015-11-27 17:52:23 +01:00
|
|
|
export TEXTDOMAIN=${PROJECT_NAME}-image-customise
|
2015-11-27 12:42:16 +01:00
|
|
|
export TEXTDOMAINDIR="/usr/share/locale"
|
2015-11-21 12:56:40 +01:00
|
|
|
|
2015-11-30 15:25:09 +01:00
|
|
|
# Whether to minimise the number of decisions during interactive install
|
|
|
|
MINIMAL_INSTALL="yes"
|
|
|
|
|
2015-11-21 11:29:10 +01:00
|
|
|
MY_USERNAME='debian'
|
2015-12-01 09:32:30 +01:00
|
|
|
MY_PASSWORD="${PROJECT_NAME}"
|
2015-11-20 22:43:03 +01:00
|
|
|
|
2016-06-04 15:25:46 +02:00
|
|
|
# Minimum number of characters in a password
|
|
|
|
MINIMUM_PASSWORD_LENGTH=10
|
|
|
|
|
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 on your local network
|
|
|
|
BOX_IP_ADDRESS="192.168.1.55"
|
|
|
|
|
|
|
|
# DNS
|
|
|
|
NAMESERVER1='213.73.91.35'
|
|
|
|
NAMESERVER2='85.214.20.141'
|
|
|
|
|
2015-11-21 13:59:19 +01:00
|
|
|
# optional configuration file containing freedombone settings
|
|
|
|
CONFIG_FILENAME=
|
|
|
|
|
2015-11-21 15:33:39 +01:00
|
|
|
# Optional ssh public key to allow
|
|
|
|
SSH_PUBKEY="no"
|
|
|
|
|
2015-11-23 11:33:45 +01:00
|
|
|
# Whether this is a generic image for mass redistribution on the interwebs
|
|
|
|
GENERIC_IMAGE="no"
|
|
|
|
|
2015-12-04 13:09:07 +01:00
|
|
|
# default SSH port
|
|
|
|
SSH_PORT=2222
|
|
|
|
|
2016-01-16 15:51:35 +01:00
|
|
|
# for mesh installs
|
|
|
|
TRACKER_PORT=6969
|
|
|
|
|
2015-12-31 13:00:55 +01:00
|
|
|
# Whether sites are accessible only within a Tor browser
|
|
|
|
ONION_ONLY="no"
|
|
|
|
|
2016-03-30 11:35:07 +02:00
|
|
|
# Whether to only install debian and nothing else
|
|
|
|
DEBIAN_INSTALL_ONLY="no"
|
|
|
|
|
2016-04-26 16:41:35 +02:00
|
|
|
# wifi settings
|
2016-01-15 15:41:59 +01:00
|
|
|
WIFI_INTERFACE='wlan0'
|
2016-04-26 16:41:35 +02:00
|
|
|
WIFI_SSID=
|
2016-05-13 19:19:34 +02:00
|
|
|
WIFI_TYPE='wpa2-psk'
|
2016-04-26 16:41:35 +02:00
|
|
|
WIFI_PASSPHRASE=
|
|
|
|
WIFI_HOTSPOT='no'
|
2016-04-26 23:38:03 +02:00
|
|
|
WIFI_NETWORKS_FILE=~/${PROJECT_NAME}-wifi.cfg
|
2016-01-15 15:41:59 +01:00
|
|
|
|
2016-06-23 12:04:04 +02:00
|
|
|
# Whether to install non-free wifi drivers for the mesh client
|
|
|
|
INSECURE='no'
|
|
|
|
|
2016-06-23 23:16:32 +02:00
|
|
|
# optional desktop background image for mesh
|
2016-08-31 15:19:16 +02:00
|
|
|
MESH_DESKTOP_BACKGROUND_IMAGE=/usr/local/share/${PROJECT_NAME}_mesh_initial_background.png
|
2016-06-23 23:16:32 +02:00
|
|
|
|
2016-06-25 14:08:31 +02:00
|
|
|
# The browser application to use
|
2016-09-08 18:12:24 +02:00
|
|
|
BROWSER=midori
|
2016-06-25 14:08:31 +02:00
|
|
|
|
2016-06-26 00:46:05 +02:00
|
|
|
MESH_INSTALL_DIR=/var/lib
|
|
|
|
|
2016-07-22 14:15:18 +02:00
|
|
|
# for mesh installs whether to delete all data and generate
|
|
|
|
# a new identity at every shutdown/boot
|
|
|
|
AMNESIC='no'
|
|
|
|
|
2017-06-16 16:39:48 +02:00
|
|
|
# Whether this is a dedicated gnusocial or postactiv instance
|
|
|
|
SOCIALINSTANCE=
|
|
|
|
|
2016-08-08 14:01:55 +02:00
|
|
|
# defines the initial keyboard layout
|
|
|
|
KEYBOARD_MAP='gb'
|
|
|
|
|
2016-08-08 22:54:04 +02:00
|
|
|
# Strings used for setting the username
|
|
|
|
MESH_TITLE=$"Freedombone Mesh"
|
|
|
|
MESH_SET_USERNAME=$"Welcome to the Freedombone mesh.\n\nThe first thing you will need to do is set a username so that other peers can find you."
|
|
|
|
|
2016-08-10 22:20:19 +02:00
|
|
|
# Whether to enable zeronet on the mesh
|
|
|
|
ENABLE_ZERONET=
|
|
|
|
|
2016-08-24 22:04:01 +02:00
|
|
|
MESH_TEXT_EDITOR='pluma'
|
|
|
|
|
2016-09-23 00:03:02 +02:00
|
|
|
PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin
|
|
|
|
|
2016-08-13 11:12:23 +02:00
|
|
|
function configure_backports {
|
|
|
|
echo "deb http://${DEBIAN_REPO}/debian/ ${DEBIAN_VERSION}-backports main" >> $rootdir/etc/apt/sources.list
|
|
|
|
}
|
|
|
|
|
|
|
|
function configure_contrib_repo {
|
|
|
|
if ! grep -q "contrib" $rootdir/etc/apt/sources.list; then
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/sed -i "s| main| main contrib|g" /etc/apt/sources.list
|
2016-08-13 11:12:23 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-11-20 17:09:21 +01:00
|
|
|
enable_eatmydata_override() {
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot $rootdir apt-get install -y eatmydata
|
2016-08-03 16:44:59 +02:00
|
|
|
if [ -x $rootdir/usr/bin/eatmydata ] && \
|
|
|
|
[ ! -f $rootdir/etc/apt/apt.conf.d/95debian-edu-install-dpkg-eatmydata ]; then
|
|
|
|
echo $"info: Adding apt config to call dpkg via eatmydata"
|
|
|
|
printf "#!/bin/sh\nexec eatmydata dpkg \"\$@\"\n" \
|
|
|
|
> $rootdir/var/tmp/dpkg-eatmydata
|
|
|
|
chmod 755 $rootdir/var/tmp/dpkg-eatmydata
|
|
|
|
cat > $rootdir/etc/apt/apt.conf.d/95debian-edu-install-dpkg-eatmydata <<EOF
|
2016-04-28 15:36:45 +02:00
|
|
|
Dir::Bin::dpkg "/var/tmp/dpkg-eatmydata";
|
|
|
|
EOF
|
2016-08-03 16:44:59 +02:00
|
|
|
else
|
|
|
|
echo $"error: unable to find /usr/bin/eatmydata after installing the eatmydata package"
|
|
|
|
fi
|
2015-11-20 17:09:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
disable_eatmydata_override() {
|
2016-08-03 16:44:59 +02:00
|
|
|
for override in \
|
|
|
|
/etc/apt/apt.conf.d/95debian-edu-install-dpkg-eatmydata \
|
|
|
|
/var/tmp/dpkg-eatmydata ; do
|
|
|
|
echo $"info: Removing apt config to call dpkg via eatmydata"
|
|
|
|
if [ -f $rootdir$override ] ; then
|
|
|
|
rm -f $rootdir$override
|
|
|
|
else
|
|
|
|
echo $"warning: missing $rootdir$override"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
sync # Flush file buffers before continuing
|
2015-11-20 17:09:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
set_apt_sources() {
|
2016-08-03 16:44:59 +02:00
|
|
|
NEW_MIRROR="$1"
|
|
|
|
COMPONENTS="main"
|
2015-11-20 17:09:21 +01:00
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
cat <<EOF > etc/apt/sources.list
|
2016-04-28 15:36:45 +02:00
|
|
|
deb $NEW_MIRROR $SUITE $COMPONENTS
|
|
|
|
deb-src $NEW_MIRROR $SUITE $COMPONENTS
|
2015-11-20 17:09:21 +01:00
|
|
|
|
2016-04-28 15:36:45 +02:00
|
|
|
#deb http://security.debian.org/ $SUITE/updates main
|
|
|
|
#deb-src http://security.debian.org/ $SUITE/updates main
|
|
|
|
EOF
|
2015-11-20 17:09:21 +01:00
|
|
|
}
|
|
|
|
|
2015-11-22 12:12:38 +01:00
|
|
|
configure_networking() {
|
2017-06-22 18:52:52 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install resolvconf
|
|
|
|
|
2017-01-05 15:12:08 +01:00
|
|
|
if [[ "$MACHINE" == "beaglebonewifi" ]]; then
|
|
|
|
# Allow networking over USB in order to configure the
|
|
|
|
# wifi login settings
|
2017-06-22 21:28:01 +02:00
|
|
|
|
|
|
|
echo '# This file describes the network interfaces available on your system' > $rootdir/etc/network/interfaces
|
|
|
|
echo '# and how to activate them. For more information, see interfaces(5).' >> $rootdir/etc/network/interfaces
|
|
|
|
echo 'source /etc/network/interfaces.d/*' >> $rootdir/etc/network/interfaces
|
|
|
|
|
|
|
|
echo 'iface usb0 inet static' >> $rootdir/etc/network/interfaces.d/usb
|
|
|
|
echo ' address 192.168.7.2' >> $rootdir/etc/network/interfaces.d/usb
|
|
|
|
echo ' netmask 255.255.255.252' >> $rootdir/etc/network/interfaces.d/usb
|
|
|
|
echo ' network 192.168.7.0' >> $rootdir/etc/network/interfaces.d/usb
|
|
|
|
echo ' gateway 192.168.7.1' >> $rootdir/etc/network/interfaces.d/usb
|
2017-01-05 15:12:08 +01:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
if [[ $DEBIAN_INSTALL_ONLY != "no" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
2016-05-27 15:18:02 +02:00
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
if [[ $GENERIC_IMAGE == "no" ]]; then
|
2017-06-22 21:28:01 +02:00
|
|
|
echo '# This file describes the network interfaces available on your system' > $rootdir/etc/network/interfaces
|
|
|
|
echo '# and how to activate them. For more information, see interfaces(5).' >> $rootdir/etc/network/interfaces
|
|
|
|
echo 'source /etc/network/interfaces.d/*' >> $rootdir/etc/network/interfaces
|
2015-11-21 14:12:31 +01:00
|
|
|
|
2017-06-22 21:28:01 +02:00
|
|
|
echo "auto eth0
|
2015-11-21 14:12:31 +01:00
|
|
|
iface eth0 inet static
|
2016-08-03 16:44:59 +02:00
|
|
|
address $BOX_IP_ADDRESS
|
|
|
|
netmask 255.255.255.0
|
2017-06-22 21:28:01 +02:00
|
|
|
gateway $ROUTER_IP_ADDRESS" > $rootdir/etc/network/interfaces.d/static
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
hexarray=( 1 2 3 4 5 6 7 8 9 0 a b c d e f )
|
|
|
|
a=${hexarray[$RANDOM%16]}${hexarray[$RANDOM%16]}
|
|
|
|
b=${hexarray[$RANDOM%16]}${hexarray[$RANDOM%16]}
|
|
|
|
c=${hexarray[$RANDOM%16]}${hexarray[$RANDOM%16]}
|
|
|
|
d=${hexarray[$RANDOM%16]}${hexarray[$RANDOM%16]}
|
|
|
|
e=${hexarray[$RANDOM%16]}${hexarray[$RANDOM%16]}
|
2017-06-22 21:28:01 +02:00
|
|
|
echo "hwaddress ether de:$a:$b:$c:$d:$e" > $rootdir/etc/network/interfaces.d/macaddress
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
|
|
|
|
2017-06-14 11:48:41 +02:00
|
|
|
# configure DNS
|
2017-06-22 18:52:52 +02:00
|
|
|
resolvconf=$rootdir/etc/resolvconf/resolv.conf.d/head
|
2017-06-14 11:48:41 +02:00
|
|
|
echo 'domain localdomain' > $resolvconf
|
|
|
|
echo 'search localdomain' >> $resolvconf
|
|
|
|
echo "nameserver $NAMESERVER1" >> $resolvconf
|
|
|
|
echo "nameserver $NAMESERVER2" >> $resolvconf
|
|
|
|
echo "nameserver $NAMESERVER3" >> $resolvconf
|
|
|
|
echo "nameserver $NAMESERVER4" >> $resolvconf
|
|
|
|
echo "nameserver $NAMESERVER5" >> $resolvconf
|
|
|
|
echo "nameserver $NAMESERVER6" >> $resolvconf
|
2017-06-22 18:52:52 +02:00
|
|
|
chroot "$rootdir" resolvconf -u
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
if [[ $VARIANT != "meshclient" && $VARIANT != "meshusb" ]]; then
|
|
|
|
# change the motd to show further install instructions
|
|
|
|
echo $"
|
2015-11-22 14:52:42 +01:00
|
|
|
.---. . .
|
|
|
|
| | |
|
|
|
|
|--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
|
|
|
| | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|
|
|
' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
Initial base install
|
2015-11-22 14:52:42 +01:00
|
|
|
|
|
|
|
Your system is not yet installed. To complete the process run the
|
|
|
|
following commands, then enter your details.
|
2015-11-21 14:12:31 +01:00
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
sudo su
|
|
|
|
${PROJECT_NAME} menuconfig
|
2015-11-21 14:12:31 +01:00
|
|
|
|
2015-11-22 14:52:42 +01:00
|
|
|
" > $rootdir/etc/motd
|
2016-08-03 16:44:59 +02:00
|
|
|
else
|
|
|
|
echo $"
|
2016-06-24 13:20:05 +02:00
|
|
|
.---. . .
|
|
|
|
| | |
|
|
|
|
|--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
|
|
|
| | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|
|
|
' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
Freedom in the Mesh
|
2016-06-24 13:20:05 +02:00
|
|
|
" > $rootdir/etc/motd
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
2015-11-21 14:12:31 +01:00
|
|
|
}
|
|
|
|
|
2015-11-22 12:12:38 +01:00
|
|
|
configure_ssh() {
|
2017-06-19 13:03:01 +02:00
|
|
|
if [[ $VARIANT == "mesh"* ]]; then
|
2016-08-11 23:37:53 +02:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
sed -i "s/Port .*/Port ${SSH_PORT}/g" $rootdir/etc/ssh/sshd_config
|
2017-06-01 21:51:19 +02:00
|
|
|
sed -i "s/#Port ${SSH_PORT}/Port ${SSH_PORT}/g" $rootdir/etc/ssh/sshd_config
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
if [[ "$SSH_PUBKEY" != "no" ]]; then
|
|
|
|
if [ ! -d $rootdir/home/$MY_USERNAME/.ssh ]; then
|
|
|
|
mkdir $rootdir/home/$MY_USERNAME/.ssh
|
|
|
|
fi
|
|
|
|
echo "$SSH_PUBKEY" > $rootdir/home/$MY_USERNAME/.ssh/authorized_keys
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot $rootdir /bin/chown -R $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/.ssh
|
2016-08-03 16:44:59 +02:00
|
|
|
sed -i 's|PasswordAuthentication.*|PasswordAuthentication no|g' $rootdir/etc/ssh/sshd_config
|
2017-06-01 21:51:19 +02:00
|
|
|
sed -i 's|#PasswordAuthentication no|PasswordAuthentication no|g' $rootdir/etc/ssh/sshd_config
|
2016-08-03 16:44:59 +02:00
|
|
|
echo $"Using ssh public key:"
|
|
|
|
echo $SSH_PUBKEY
|
|
|
|
echo $'Password ssh authentication turned off'
|
|
|
|
fi
|
2015-11-21 15:33:39 +01:00
|
|
|
}
|
|
|
|
|
2015-11-23 11:33:45 +01:00
|
|
|
create_generic_image() {
|
2016-08-03 16:44:59 +02:00
|
|
|
if [[ $DEBIAN_INSTALL_ONLY != "no" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
if [[ $GENERIC_IMAGE == "no" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
if [ $CONFIG_FILENAME ]; then
|
|
|
|
if [[ "$CONFIG_FILENAME" == *"mesh.cfg"* ]]; then
|
|
|
|
VARIANT="mesh"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Don't install any configuration. This will be a base system
|
2017-06-19 13:03:01 +02:00
|
|
|
if [[ $VARIANT != "mesh"* ]]; then
|
2016-08-03 16:44:59 +02:00
|
|
|
CONFIG_FILENAME=
|
|
|
|
else
|
|
|
|
touch $rootdir/root/.initial_mesh_setup
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Stick with the existing login for mesh clients
|
|
|
|
if [[ $VARIANT == "meshclient" || $VARIANT == "meshusb" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The presence of this file indicates that the initial
|
|
|
|
# setup has not yet been completed
|
|
|
|
touch $rootdir/home/$MY_USERNAME/.initial_setup
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot $rootdir /bin/chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/.initial_setup
|
2016-08-03 16:44:59 +02:00
|
|
|
touch $rootdir/root/.initial_setup
|
|
|
|
|
|
|
|
cat >> $rootdir/home/$MY_USERNAME/.bashrc <<EOF
|
2016-04-28 15:36:45 +02:00
|
|
|
# initial setup of the system
|
|
|
|
if [ -f ~/.initial_setup ]; then
|
2016-08-03 16:44:59 +02:00
|
|
|
clear
|
|
|
|
echo "
|
2015-11-23 23:03:17 +01:00
|
|
|
.---. . .
|
|
|
|
| | |
|
|
|
|
|--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
|
|
|
| | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|
|
|
' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
Initial setup process
|
2015-11-23 23:03:17 +01:00
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
Please enter your password a second time.
|
2015-11-23 23:03:17 +01:00
|
|
|
"
|
2016-08-03 16:44:59 +02:00
|
|
|
sudo su
|
2016-04-28 15:36:45 +02:00
|
|
|
fi
|
|
|
|
EOF
|
2016-04-28 10:58:38 +02:00
|
|
|
|
2016-10-13 12:44:53 +02:00
|
|
|
echo "MY_USERNAME=${MY_USERNAME}" >> $rootdir/root/.bashrc
|
|
|
|
echo "SSH_PORT=${SSH_PORT}" >> $rootdir/root/.bashrc
|
2016-08-03 16:44:59 +02:00
|
|
|
echo '# initial setup of the system' >> $rootdir/root/.bashrc
|
|
|
|
echo 'if [ -f ~/.initial_setup ]; then' >> $rootdir/root/.bashrc
|
|
|
|
echo ' if [ -f ~/login.txt ]; then' >> $rootdir/root/.bashrc
|
|
|
|
echo ' NEW_USER_PASSWORD=$(printf `cat ~/login.txt`)' >> $rootdir/root/.bashrc
|
|
|
|
echo ' else' >> $rootdir/root/.bashrc
|
|
|
|
echo ' ENTROPY=$(cat /proc/sys/kernel/random/entropy_avail)' >> $rootdir/root/.bashrc
|
|
|
|
echo ' if [ $ENTROPY -lt 500 ]; then' >> $rootdir/root/.bashrc
|
|
|
|
ENTROPY_MESSAGE1=$'Initial setup process'
|
|
|
|
ENTROPY_MESSAGE2=$'Password Generation'
|
|
|
|
ENTROPY_MESSAGE3=$'WARNING: The entropy available on this system is too low to generate a password.\n\nThe installation process cannot continue.'
|
|
|
|
echo " dialog --backtitle \"${ENTROPY_MESSAGE1}\" --title \"${ENTROPY_MESSAGE2}\" --msgbox \"${ENTROPY_MESSAGE3}\" 8 50" >> $rootdir/root/.bashrc
|
|
|
|
echo ' exit' >> $rootdir/root/.bashrc
|
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
2017-05-06 17:21:27 +02:00
|
|
|
echo -n ' NEW_USER_PASSWORD=$(openssl rand -base64 32 | tr -dc A-Za-z0-9 | head -c ' >> $rootdir/root/.bashrc
|
|
|
|
echo "${DEFAULT_PASSWORD_LENGTH})" >> $rootdir/root/.bashrc
|
2016-08-03 16:44:59 +02:00
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
|
|
|
echo ' echo "${NEW_USER_PASSWORD}" > ~/login.txt' >> $rootdir/root/.bashrc
|
|
|
|
|
|
|
|
echo ' clear' >> $rootdir/root/.bashrc
|
|
|
|
echo ' echo ""' >> $rootdir/root/.bashrc
|
|
|
|
NEW_LOGIN_PASSWORD_MESSAGE1=$'Your new login password is:'
|
|
|
|
NEW_LOGIN_PASSWORD_MESSAGE2=$'Use it whenever you wish to ssh into this system.'
|
|
|
|
NEW_LOGIN_PASSWORD_MESSAGE3=$'IMPORTANT: Please take a moment to enter the above password into a\npassword manager or write it down somewhere.'
|
|
|
|
PRESS_KEY_MESSAGE=$'Press any key to continue...'
|
|
|
|
echo " echo \"${NEW_LOGIN_PASSWORD_MESSAGE1}\"" >> $rootdir/root/.bashrc
|
|
|
|
echo ' echo ""' >> $rootdir/root/.bashrc
|
|
|
|
echo ' echo " ${NEW_USER_PASSWORD}"' >> $rootdir/root/.bashrc
|
|
|
|
echo ' echo ""' >> $rootdir/root/.bashrc
|
|
|
|
echo " echo \"${NEW_LOGIN_PASSWORD_MESSAGE2}\"" >> $rootdir/root/.bashrc
|
|
|
|
echo ' echo ""' >> $rootdir/root/.bashrc
|
|
|
|
echo " echo \"${NEW_LOGIN_PASSWORD_MESSAGE3}\"" >> $rootdir/root/.bashrc
|
|
|
|
echo ' echo ""' >> $rootdir/root/.bashrc
|
|
|
|
echo " read -n1 -r -p \"${PRESS_KEY_MESSAGE}\" key" >> $rootdir/root/.bashrc
|
|
|
|
|
|
|
|
# change the password for the admin user
|
|
|
|
echo -n " echo \"${MY_USERNAME}:" >> $rootdir/root/.bashrc
|
|
|
|
echo '$(printf `cat ~/login.txt`)"|chpasswd' >> $rootdir/root/.bashrc
|
|
|
|
|
|
|
|
# update before continuing
|
|
|
|
echo " cd /root/${PROJECT_NAME}" >> $rootdir/root/.bashrc
|
|
|
|
echo " git stash" >> $rootdir/root/.bashrc
|
|
|
|
echo " git pull" >> $rootdir/root/.bashrc
|
2017-06-08 12:12:05 +02:00
|
|
|
echo " git checkout stretch" >> $rootdir/root/.bashrc
|
2016-08-03 16:44:59 +02:00
|
|
|
echo " make install" >> $rootdir/root/.bashrc
|
|
|
|
|
2017-06-19 13:03:01 +02:00
|
|
|
if [[ $VARIANT != "mesh"* && $VARIANT != "usb" ]]; then
|
2017-06-16 16:39:48 +02:00
|
|
|
if [[ "$SOCIALINSTANCE" == "gnusocial" ]]; then
|
|
|
|
echo " ${PROJECT_NAME} menuconfig-gnusocial" >> $rootdir/root/.bashrc
|
|
|
|
else
|
|
|
|
if [[ "$SOCIALINSTANCE" == "postactiv" ]]; then
|
|
|
|
echo " ${PROJECT_NAME} menuconfig-postactiv" >> $rootdir/root/.bashrc
|
2016-08-03 16:44:59 +02:00
|
|
|
else
|
2017-06-16 16:39:48 +02:00
|
|
|
if [[ $ONION_ONLY == "no" ]]; then
|
|
|
|
if [[ $MINIMAL_INSTALL == "no" ]]; then
|
|
|
|
echo " ${PROJECT_NAME} menuconfig-full" >> $rootdir/root/.bashrc
|
|
|
|
else
|
|
|
|
echo " ${PROJECT_NAME} menuconfig" >> $rootdir/root/.bashrc
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo " ${PROJECT_NAME} menuconfig-onion" >> $rootdir/root/.bashrc
|
|
|
|
fi
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo " echo ''" >> $rootdir/root/.bashrc
|
|
|
|
fi
|
|
|
|
echo ' if [ "$?" = "0" ]; then' >> $rootdir/root/.bashrc
|
|
|
|
echo " if [ -f ~/${PROJECT_NAME}-completed.txt ]; then" >> $rootdir/root/.bashrc
|
2017-06-02 12:53:22 +02:00
|
|
|
echo " # Check that the initial setup really did complete" >> $rootdir/root/.bashrc
|
|
|
|
echo " if grep -q 'tripwire' ~/${PROJECT_NAME}-completed.txt; then" >> $rootdir/root/.bashrc
|
2016-08-03 16:44:59 +02:00
|
|
|
# Remove the initial setup files
|
2017-06-02 12:53:22 +02:00
|
|
|
echo ' rm /root/.initial_setup' >> $rootdir/root/.bashrc
|
|
|
|
echo ' rm /home/fbone/.initial_setup' >> $rootdir/root/.bashrc
|
|
|
|
echo " touch /root/.remove_${GENERIC_IMAGE_USERNAME}" >> $rootdir/root/.bashrc
|
|
|
|
echo ' shred -zu ~/login.txt' >> $rootdir/root/.bashrc
|
2017-06-19 13:03:01 +02:00
|
|
|
if [[ $VARIANT != "mesh"* && $VARIANT != "usb" ]]; then
|
2017-06-02 12:53:22 +02:00
|
|
|
echo ' SSH_ONION_HOSTNAME=$(cat /var/lib/tor/hidden_service_ssh/hostname)' >> $rootdir/root/.bashrc
|
2016-10-08 12:28:36 +02:00
|
|
|
|
2017-06-02 12:53:22 +02:00
|
|
|
echo ' if [ ${#SSH_ONION_HOSTNAME} -lt 2 ]; then' >> $rootdir/root/.bashrc
|
|
|
|
echo ' exit 62392' >> $rootdir/root/.bashrc
|
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
2017-06-02 12:53:22 +02:00
|
|
|
echo " if [ -f /root/${PROJECT_NAME}-wifi.cfg ]; then" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo '[Unit]' > /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'Description=WifiStartup (Start wifi networking)' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'After=syslog.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'After=network.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'After=remote-fs.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo '[Service]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'Type=simple' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'User=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'Group=root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'WorkingDirectory=/root' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'ExecStart=/usr/local/bin/freedombone-wifi --wait 5 2> /dev/null' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo '' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo '[Install]' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " echo 'WantedBy=multi-user.target' >> /etc/systemd/system/wifistart.service" >> $rootdir/root/.bashrc
|
|
|
|
echo " systemctl enable wifistart" >> $rootdir/root/.bashrc
|
|
|
|
echo " systemctl daemon-reload" >> $rootdir/root/.bashrc
|
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
2017-06-16 17:01:43 +02:00
|
|
|
echo ' systemctl reboot -i' >> $rootdir/root/.bashrc
|
2016-10-21 23:57:30 +02:00
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
2016-08-03 16:44:59 +02:00
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
|
|
|
echo ' else' >> $rootdir/root/.bashrc
|
|
|
|
echo ' key=' >> $rootdir/root/.bashrc
|
|
|
|
echo ' while [[ $key != "x" ]]; do' >> $rootdir/root/.bashrc
|
|
|
|
INSTALL_FAIL_MESSAGE=$"Install failed. Press x to continue..."
|
|
|
|
echo " read -n1 -r -p \"${INSTALL_FAIL_MESSAGE}\" key" >> $rootdir/root/.bashrc
|
|
|
|
echo ' done' >> $rootdir/root/.bashrc
|
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
|
|
|
echo ' exit' >> $rootdir/root/.bashrc
|
|
|
|
echo 'else' >> $rootdir/root/.bashrc
|
|
|
|
echo ' # Remove default account after install' >> $rootdir/root/.bashrc
|
|
|
|
echo " if [ -f /root/.remove_${GENERIC_IMAGE_USERNAME} ]; then" >> $rootdir/root/.bashrc
|
|
|
|
echo " if [ -d /home/${GENERIC_IMAGE_USERNAME} ]; then" >> $rootdir/root/.bashrc
|
|
|
|
echo " userdel -r ${GENERIC_IMAGE_USERNAME}" >> $rootdir/root/.bashrc
|
|
|
|
echo " if [ -d /home/${GENERIC_IMAGE_USERNAME} ]; then" >> $rootdir/root/.bashrc
|
|
|
|
echo " rm -rf /home/${GENERIC_IMAGE_USERNAME}" >> $rootdir/root/.bashrc
|
|
|
|
echo " rm /root/.remove_${GENERIC_IMAGE_USERNAME}" >> $rootdir/root/.bashrc
|
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
|
|
|
echo ' fi' >> $rootdir/root/.bashrc
|
|
|
|
echo 'fi' >> $rootdir/root/.bashrc
|
2015-11-23 11:33:45 +01:00
|
|
|
}
|
|
|
|
|
2015-11-22 12:12:38 +01:00
|
|
|
continue_installation() {
|
2016-08-03 16:44:59 +02:00
|
|
|
# If a configuration file exists then run with it
|
|
|
|
# otherwise the interactive installer can be used
|
|
|
|
# This is equivalent to installing freedombox-setup on freedombox
|
|
|
|
if [ $CONFIG_FILENAME ]; then
|
|
|
|
if [ ${#CONFIG_FILENAME} -gt 2 ]; then
|
|
|
|
cp $CONFIG_FILENAME $rootdir/root/$PROJECT_NAME.cfg
|
|
|
|
cat $rootdir/root/$PROJECT_NAME.cfg
|
|
|
|
chroot "$rootdir" su -c "$PROJECT_NAME -c /root/$PROJECT_NAME.cfg" - root
|
|
|
|
fi
|
|
|
|
fi
|
2015-11-21 14:12:31 +01:00
|
|
|
}
|
|
|
|
|
2015-12-22 12:07:00 +01:00
|
|
|
atheros_wifi() {
|
2017-01-05 15:12:08 +01:00
|
|
|
if [[ "$MACHINE" == "beaglebonewifi" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
firmware_filename="open-ath9k-htc-firmware_1.3-1_all.deb"
|
|
|
|
firmware_hash='5fea58ffefdf0ef15b504db7fbe3bc078c03e0d927bba64085e4b6f2546102f5'
|
|
|
|
|
|
|
|
firmware_url="http://us.archive.trisquel.info/trisquel/pool/main/o/open-ath9k-htc-firmware/$firmware_filename"
|
|
|
|
firmware_tempfile="/tmp/$firmware_filename"
|
|
|
|
wget "$firmware_url" -O "$rootdir$firmware_tempfile"
|
|
|
|
downloaded_firmware_hash=$(sha256sum "$rootdir$firmware_tempfile" | awk -F ' ' '{print $1}')
|
|
|
|
if [[ "$downloaded_firmware_hash" == "$firmware_hash" ]]; then
|
|
|
|
chroot "$rootdir" dpkg -i "$firmware_tempfile"
|
|
|
|
else
|
|
|
|
echo 'WARNING: Atheros Wifi firmware hash does not match. The driver has not been installed.'
|
|
|
|
fi
|
2015-12-22 12:07:00 +01:00
|
|
|
}
|
|
|
|
|
2016-05-28 13:16:00 +02:00
|
|
|
configure_wifi() {
|
2016-10-21 11:08:45 +02:00
|
|
|
if [[ $VARIANT == "mesh"* ]]; then
|
2016-08-03 16:44:59 +02:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f $WIFI_NETWORKS_FILE ]; then
|
2016-10-21 11:08:45 +02:00
|
|
|
chroot "$rootdir" ${PROJECT_NAME}-wifi --networks $WIFI_NETWORKS_FILE
|
2016-08-03 16:44:59 +02:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $WIFI_TYPE != 'none' ]]; then
|
|
|
|
if [ ${#WIFI_PASSPHRASE} -lt 2 ]; then
|
|
|
|
return
|
|
|
|
fi
|
2016-10-21 11:08:45 +02:00
|
|
|
chroot "$rootdir" ${PROJECT_NAME}-wifi -s $WIFI_SSID -t $WIFI_TYPE -p $WIFI_PASSPHRASE --hotspot $WIFI_HOTSPOT
|
2016-08-03 16:44:59 +02:00
|
|
|
else
|
2016-10-21 11:08:45 +02:00
|
|
|
chroot "$rootdir" ${PROJECT_NAME}-wifi -s $WIFI_SSID -t $WIFI_TYPE --hotspot $WIFI_HOTSPOT
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
2016-05-28 13:16:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# Mesh networking
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# for mesh installs
|
|
|
|
TRACKER_PORT=6969
|
|
|
|
|
|
|
|
WIFI_CHANNEL=2
|
|
|
|
|
|
|
|
# B.A.T.M.A.N settings
|
|
|
|
BATMAN_CELLID='02:BA:00:00:03:01'
|
|
|
|
WIFI_SSID='mesh'
|
|
|
|
|
|
|
|
# To avoid confusions these are obtained from the main project file
|
2017-06-17 16:58:45 +02:00
|
|
|
#TOXID_REPO=
|
|
|
|
#TOX_PORT=
|
|
|
|
#TOXCORE_REPO=
|
|
|
|
#TOXIC_REPO=
|
|
|
|
#TOXCORE_COMMIT=
|
|
|
|
#TOXIC_COMMIT=
|
2016-05-28 13:16:00 +02:00
|
|
|
# These are some default nodes, but you can replace them with trusted nodes
|
|
|
|
# as you prefer. See https://wiki.tox.im/Nodes
|
2017-06-17 16:58:45 +02:00
|
|
|
#TOX_NODES=
|
2016-05-28 13:16:00 +02:00
|
|
|
#TOX_NODES=(
|
|
|
|
# '192.254.75.102,2607:5600:284::2,33445,951C88B7E75C867418ACDB5D273821372BB5BD652740BCDF623A4FA293E75D2F,Tox RELENG,US'
|
|
|
|
# '144.76.60.215,2a01:4f8:191:64d6::1,33445,04119E835DF3E78BACF0F84235B300546AF8B936F035185E2A8E9E0A67C8924F,sonOfRa,DE'
|
|
|
|
#)
|
|
|
|
|
|
|
|
# To avoid confusions these are obtained from the main project file
|
|
|
|
ZERONET_REPO=
|
|
|
|
ZERONET_COMMIT=
|
|
|
|
ZERONET_PORT=
|
2016-06-25 17:51:04 +02:00
|
|
|
ZERONET_BLOG_REPO=
|
|
|
|
ZERONET_BLOG_COMMIT=
|
|
|
|
ZERONET_MAIL_REPO=
|
|
|
|
ZERONET_MAIL_COMMIT=
|
|
|
|
ZERONET_FORUM_REPO=
|
|
|
|
ZERONET_FORUM_COMMIT=
|
|
|
|
ZERONET_ID_REPO=
|
|
|
|
ZERONET_ID_COMMIT=
|
2016-05-28 13:16:00 +02:00
|
|
|
|
|
|
|
# Directory where source code is downloaded and compiled
|
|
|
|
INSTALL_DIR=$HOME/build
|
|
|
|
|
2016-07-12 09:27:11 +02:00
|
|
|
INSTALLING_MESH=
|
2016-06-25 17:51:04 +02:00
|
|
|
|
2017-09-12 14:54:23 +02:00
|
|
|
install_patchwork() {
|
2017-09-12 15:05:58 +02:00
|
|
|
chroot "$rootdir" apt-get install g++ m4 libtool automake nodejs
|
|
|
|
chroot "$rootdir" apt-get install libxext-dev libxtst-dev libxkbfile-dev
|
2017-09-12 14:54:23 +02:00
|
|
|
git clone https://github.com/ssbc/patchwork $rootdir/etc/patchwork
|
|
|
|
|
|
|
|
cat <<EOF > $rootdir/usr/bin/install_patchwork
|
|
|
|
#!/bin/bash
|
|
|
|
cd /etc/patchwork
|
|
|
|
npm install
|
|
|
|
EOF
|
|
|
|
chroot "$rootdir" /bin/chmod +x /usr/bin/install_patchwork
|
|
|
|
chroot "$rootdir" /usr/bin/install_patchwork
|
|
|
|
if [ ! -f /usr/bin/patchwork ]; then
|
|
|
|
if [ ! -f /usr/local/bin/patchwork ]; then
|
|
|
|
echo $'Unable to install SSB Patchwork peer'
|
|
|
|
exit 783524
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
rm $rootdir/usr/bin/install_patchwork
|
|
|
|
}
|
|
|
|
|
2016-01-11 12:27:08 +01:00
|
|
|
initialise_mesh() {
|
2017-06-19 13:03:01 +02:00
|
|
|
if [[ $VARIANT != "mesh"* ]]; then
|
2016-08-03 16:44:59 +02:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
if [[ $DEBIAN_INSTALL_ONLY != "no" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $INSECURE == $'yes' ]]; then
|
|
|
|
echo '*********************************************************'
|
|
|
|
echo $'WARNING: non-free wifi drivers are being installed.'
|
|
|
|
echo $' This may compromise the security of your system.'
|
|
|
|
echo '*********************************************************'
|
|
|
|
|
|
|
|
# enable non-free repo
|
|
|
|
if ! grep -q "non-free" $rootdir/etc/apt/sources.list; then
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/sed -i "s| main| main non-free|g" /etc/apt/sources.list
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
chroot "$rootdir" apt-get update
|
|
|
|
|
|
|
|
# install proprietary wifi drivers
|
|
|
|
# see https://wiki.debian.org/iwlwifi
|
2017-07-04 16:02:35 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install firmware-iwlwifi firmware-b43-installer firmware-brcm80211 firmware-realtek
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
INSTALLING_MESH=1
|
|
|
|
|
2017-06-19 12:20:26 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install apt-transport-https
|
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
configure_firewall
|
|
|
|
install_avahi
|
|
|
|
install_batman
|
|
|
|
install_tomb
|
2016-08-29 13:41:26 +02:00
|
|
|
#install_tahoelafs
|
2016-08-26 17:38:53 +02:00
|
|
|
#install_librevault
|
2017-09-12 14:54:23 +02:00
|
|
|
install_patchwork
|
2016-09-03 16:36:44 +02:00
|
|
|
install_ipfs
|
2016-08-03 16:44:59 +02:00
|
|
|
install_tox
|
|
|
|
install_web_server
|
2016-10-16 13:51:04 +02:00
|
|
|
install_pelican
|
2016-08-10 22:20:19 +02:00
|
|
|
if [ $ENABLE_ZERONET ]; then
|
|
|
|
install_zeronet
|
|
|
|
fi
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
MESH_SERVICE='mesh-setup.service'
|
|
|
|
MESH_SETUP_DAEMON=$rootdir/etc/systemd/system/$MESH_SERVICE
|
|
|
|
|
|
|
|
MESH_STARTUP_PARAMS="${MY_USERNAME}"
|
|
|
|
if [[ $AMNESIC != 'no' ]]; then
|
|
|
|
MESH_STARTUP_PARAMS="${MY_USERNAME} amnesic"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo '[Unit]' > $MESH_SETUP_DAEMON
|
|
|
|
echo 'Description=Initial mesh router configuration' >> $MESH_SETUP_DAEMON
|
|
|
|
echo 'After=syslog.target' >> $MESH_SETUP_DAEMON
|
|
|
|
echo 'After=network.target' >> $MESH_SETUP_DAEMON
|
2016-11-03 23:58:03 +01:00
|
|
|
echo '' >> $MESH_SETUP_DAEMON
|
2016-08-03 16:44:59 +02:00
|
|
|
echo '[Service]' >> $MESH_SETUP_DAEMON
|
|
|
|
echo 'Type=simple' >> $MESH_SETUP_DAEMON
|
|
|
|
echo 'User=root' >> $MESH_SETUP_DAEMON
|
|
|
|
echo 'Group=root' >> $MESH_SETUP_DAEMON
|
|
|
|
echo 'WorkingDirectory=/root' >> $MESH_SETUP_DAEMON
|
|
|
|
echo "ExecStart=/usr/local/bin/${PROJECT_NAME}-image-mesh ${MESH_STARTUP_PARAMS} > /var/log/mesh-setup.log" >> $MESH_SETUP_DAEMON
|
|
|
|
echo '' >> $MESH_SETUP_DAEMON
|
|
|
|
echo 'TimeoutSec=99999' >> $MESH_SETUP_DAEMON
|
|
|
|
echo '' >> $MESH_SETUP_DAEMON
|
|
|
|
echo '[Install]' >> $MESH_SETUP_DAEMON
|
|
|
|
echo 'WantedBy=multi-user.target' >> $MESH_SETUP_DAEMON
|
2016-11-04 00:12:59 +01:00
|
|
|
chmod +x $MESH_SETUP_DAEMON
|
2016-08-03 16:44:59 +02:00
|
|
|
chroot "$rootdir" systemctl enable $MESH_SERVICE
|
2016-01-11 12:27:08 +01:00
|
|
|
}
|
|
|
|
|
2016-06-06 18:31:23 +02:00
|
|
|
# User interface for USB drive installs ######################################
|
|
|
|
|
2016-06-24 19:45:52 +02:00
|
|
|
function mesh_client_startup_applications {
|
2016-08-03 16:44:59 +02:00
|
|
|
if [ ! -d $rootdir/home/$MY_USERNAME/Desktop ]; then
|
|
|
|
mkdir -p $rootdir/home/$MY_USERNAME/Desktop
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d $rootdir/home/$MY_USERNAME/.config/autostart ]; then
|
|
|
|
mkdir -p $rootdir/home/$MY_USERNAME/.config/autostart
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/chown -R $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/.config
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
START_DESKTOP=$rootdir/home/$MY_USERNAME/mesh-desktop.sh
|
2016-08-09 10:11:43 +02:00
|
|
|
FIRST_BOOT=/home/$MY_USERNAME/.first_boot
|
2016-08-28 21:51:45 +02:00
|
|
|
TAHOE_COMMAND="cd /var/lib/tahoelafs && venv/bin/tahoe"
|
2016-08-03 16:44:59 +02:00
|
|
|
echo '#!/bin/bash' > $START_DESKTOP
|
2016-08-08 14:01:55 +02:00
|
|
|
echo "setxkbmap ${KEYBOARD_MAP}" > $START_DESKTOP
|
2016-08-03 16:44:59 +02:00
|
|
|
echo 'dconf write /org/mate/caja/desktop/volumes-visible false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/caja/desktop/computer-icon-visible false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/caja/desktop/home-icon-visible false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/caja/desktop/network-icon-visible false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/caja/desktop/trash-icon-visible false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/caja/desktop/volumes-visible false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/desktop/media-handling/automount-open false' >> $START_DESKTOP
|
2016-08-24 13:54:43 +02:00
|
|
|
echo 'dconf write /org/mate/screensaver/lock-enabled false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/power-manager/lock-keyring-suspend false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/power-manager/lock-suspend false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/power-manager/lock-use-screensaver false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/power-manager/lock-blank-screen false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/power-manager/lock-hibernate false' >> $START_DESKTOP
|
|
|
|
echo 'dconf write /org/mate/power-manager/lock-keyring-hibernate false' >> $START_DESKTOP
|
2016-08-26 17:38:53 +02:00
|
|
|
echo 'dconf write /org/mate/desktop/peripherals/touchpad/scroll-method 2' >> $START_DESKTOP
|
2016-08-05 10:25:01 +02:00
|
|
|
echo "touch /home/$MY_USERNAME/.dbus/Xdbus" >> $START_DESKTOP
|
|
|
|
echo "chmod 600 /home/$MY_USERNAME/.dbus/Xdbus" >> $START_DESKTOP
|
|
|
|
echo "env | grep DBUS_SESSION_BUS_ADDRESS > /home/$MY_USERNAME/.dbus/Xdbus" >> $START_DESKTOP
|
|
|
|
echo "echo 'export DBUS_SESSION_BUS_ADDRESS' >> /home/$MY_USERNAME/.dbus/Xdbus" >> $START_DESKTOP
|
2016-08-07 21:26:46 +02:00
|
|
|
|
2016-08-31 15:19:16 +02:00
|
|
|
echo '' >> $START_DESKTOP
|
|
|
|
echo "amixer set 'Master' unmute" >> $START_DESKTOP
|
|
|
|
echo "amixer set 'Master' 50%" >> $START_DESKTOP
|
|
|
|
echo '' >> $START_DESKTOP
|
2016-08-09 10:11:43 +02:00
|
|
|
echo '' >> $START_DESKTOP
|
|
|
|
echo "if [ ! -f $FIRST_BOOT ]; then" >> $START_DESKTOP
|
2016-08-28 21:51:45 +02:00
|
|
|
echo " $TAHOE_COMMAND start" >> $START_DESKTOP
|
2016-08-09 10:11:43 +02:00
|
|
|
echo ' exit 0' >> $START_DESKTOP
|
|
|
|
echo 'fi' >> $START_DESKTOP
|
|
|
|
echo '' >> $START_DESKTOP
|
2016-09-12 12:15:11 +02:00
|
|
|
echo 'INITIAL_TOX_USERNAME=""' >> $START_DESKTOP
|
|
|
|
echo 'while [ ${#INITIAL_TOX_USERNAME} -eq 0 ]; do' >> $START_DESKTOP
|
2016-08-09 10:11:43 +02:00
|
|
|
echo ' data=$(tempfile 2>/dev/null)' >> $START_DESKTOP
|
|
|
|
echo ' trap "rm -f $data" 0 1 2 5 15' >> $START_DESKTOP
|
|
|
|
echo -n " dialog --title \"${MESH_TITLE}\" " >> $START_DESKTOP
|
|
|
|
echo -n "--backtitle \"${MESH_TITLE}\" " >> $START_DESKTOP
|
|
|
|
echo -n "--inputbox \"${MESH_SET_USERNAME}\" 12 60 Anon " >> $START_DESKTOP
|
|
|
|
echo '2>$data' >> $START_DESKTOP
|
|
|
|
echo ' sel=$?' >> $START_DESKTOP
|
|
|
|
echo ' case $sel in' >> $START_DESKTOP
|
|
|
|
echo ' 0)' >> $START_DESKTOP
|
|
|
|
echo ' INITIAL_TOX_USERNAME=$(<$data)' >> $START_DESKTOP
|
|
|
|
echo ' ;;' >> $START_DESKTOP
|
|
|
|
echo ' esac' >> $START_DESKTOP
|
|
|
|
echo 'done' >> $START_DESKTOP
|
|
|
|
echo '' >> $START_DESKTOP
|
|
|
|
echo 'toxid --setuser "$INITIAL_TOX_USERNAME"' >> $START_DESKTOP
|
|
|
|
echo '' >> $START_DESKTOP
|
2016-08-28 21:51:45 +02:00
|
|
|
echo "if [ -f /home/$MY_USERNAME/.tahoe/tahoe.cfg ]; then" >> $START_DESKTOP
|
|
|
|
echo " sed -i 's|nickname =.*|nickname = \$INITIAL_TOX_USERNAME|g' /home/$MY_USERNAME/.tahoe/tahoe.cfg" >> $START_DESKTOP
|
|
|
|
|
|
|
|
echo " $TAHOE_COMMAND restart" >> $START_DESKTOP
|
|
|
|
echo 'fi' >> $START_DESKTOP
|
|
|
|
echo '' >> $START_DESKTOP
|
2016-08-09 10:11:43 +02:00
|
|
|
echo "rm -f $FIRST_BOOT" >> $START_DESKTOP
|
|
|
|
echo '' >> $START_DESKTOP
|
|
|
|
echo 'exit 0' >> $START_DESKTOP
|
2016-08-03 16:44:59 +02:00
|
|
|
chmod +x $START_DESKTOP
|
|
|
|
|
|
|
|
START_DESKTOP2=$rootdir/home/$MY_USERNAME/.config/autostart/mesh-start.desktop
|
|
|
|
echo '[Desktop Entry]' > $START_DESKTOP2
|
|
|
|
echo 'Type=Application' >> $START_DESKTOP2
|
|
|
|
echo 'Name=Mesh start desktop script' >> $START_DESKTOP2
|
|
|
|
echo "Exec=bash -c '~/mesh-desktop.sh'" >> $START_DESKTOP2
|
|
|
|
echo 'X-GNOME-Autostart-enabled=true' >> $START_DESKTOP2
|
|
|
|
chmod +x $START_DESKTOP2
|
2016-08-08 22:54:04 +02:00
|
|
|
|
|
|
|
START_DESKTOP3=$rootdir/home/$MY_USERNAME/.config/autostart/set_username.desktop
|
|
|
|
echo '[Desktop Entry]' > $START_DESKTOP3
|
|
|
|
echo 'Version=1.0' >> $START_DESKTOP3
|
|
|
|
echo 'Name=Set Username' >> $START_DESKTOP3
|
|
|
|
echo 'Type=Application' >> $START_DESKTOP3
|
|
|
|
echo 'Comment=Set username' >> $START_DESKTOP3
|
2016-08-10 09:01:01 +02:00
|
|
|
echo "Exec=mate-terminal -e \"bash -c /home/${MY_USERNAME}/mesh-desktop.sh\"" >> $START_DESKTOP3
|
2016-08-08 22:54:04 +02:00
|
|
|
echo 'Icon=user-away' >> $START_DESKTOP3
|
|
|
|
echo 'Terminal=false' >> $START_DESKTOP3
|
|
|
|
echo 'Categories=Application;' >> $START_DESKTOP3
|
|
|
|
chmod +x $START_DESKTOP3
|
2016-06-24 20:22:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function mesh_desktop_icons {
|
2016-08-03 16:44:59 +02:00
|
|
|
if [ ! -d $rootdir/home/$MY_USERNAME/Desktop ]; then
|
|
|
|
mkdir -p $rootdir/home/$MY_USERNAME/Desktop
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Terminal
|
2016-08-03 17:24:55 +02:00
|
|
|
#echo '[Desktop Entry]' > $rootdir/home/$MY_USERNAME/Desktop/terminal.desktop
|
|
|
|
#echo 'Name=MATE Terminal' >> $rootdir/home/$MY_USERNAME/Desktop/terminal.desktop
|
|
|
|
#echo 'Type=Application' >> $rootdir/home/$MY_USERNAME/Desktop/terminal.desktop
|
|
|
|
#echo 'Comment=Use the command line' >> $rootdir/home/$MY_USERNAME/Desktop/terminal.desktop
|
|
|
|
#echo 'TryExec=mate-terminal' >> $rootdir/home/$MY_USERNAME/Desktop/terminal.desktop
|
|
|
|
#echo 'Exec=mate-terminal' >> $rootdir/home/$MY_USERNAME/Desktop/terminal.desktop
|
|
|
|
#echo 'Icon=terminal' >> $rootdir/home/$MY_USERNAME/Desktop/terminal.desktop
|
|
|
|
#echo 'StartupNotify=true' >> $rootdir/home/$MY_USERNAME/Desktop/terminal.desktop
|
2016-08-03 16:44:59 +02:00
|
|
|
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/chown -R $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/Desktop
|
2016-06-24 19:45:52 +02:00
|
|
|
}
|
|
|
|
|
2016-06-06 18:31:23 +02:00
|
|
|
function configure_user_interface {
|
2016-08-03 16:44:59 +02:00
|
|
|
if [[ $VARIANT != "meshclient" && $VARIANT != "meshusb" && $VARIANT != "usb" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# desktop
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install mate-desktop-environment
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
# tool to change desktop settings from command line
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install dconf-cli dconf-gsettings-backend dbus dbus-x11
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
# for tomb
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install pinentry-gtk2
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
# for tox video
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install ffmpeg cheese v4l-utils
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
# to provide notifications
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install libnotify-bin
|
2016-08-03 16:44:59 +02:00
|
|
|
|
2016-08-22 20:57:45 +02:00
|
|
|
# for video/audio
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install libtheora-bin libvorbis-dev v4l-utils
|
2016-08-22 20:57:45 +02:00
|
|
|
|
|
|
|
# a sane editor
|
2017-05-29 15:46:27 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install emacs
|
2016-08-22 20:57:45 +02:00
|
|
|
|
2016-09-10 15:58:51 +02:00
|
|
|
# for wifi monitoring
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install horst
|
2016-09-10 15:58:51 +02:00
|
|
|
|
2016-08-31 15:19:16 +02:00
|
|
|
# for sound level control
|
2017-07-02 20:04:07 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install alsa-utils pavucontrol
|
2016-08-31 15:19:16 +02:00
|
|
|
|
2016-09-08 18:24:25 +02:00
|
|
|
# to play various media types
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install vlc
|
2016-09-08 18:24:25 +02:00
|
|
|
|
2016-08-29 13:45:11 +02:00
|
|
|
# android adb to allow phones to be connected and for example transfer photos/documents
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install android-tools-adb
|
2016-08-29 13:45:11 +02:00
|
|
|
|
2016-08-11 23:26:27 +02:00
|
|
|
# Produce a text file on the desktop listing users on the mesh
|
|
|
|
cat <<EOF > $rootdir/usr/bin/list-tox-users
|
|
|
|
#!/bin/bash
|
2016-11-03 20:41:12 +01:00
|
|
|
users_list=\$(lstox | awk -F ' ' '{\$1=""; print \$0}' | sed -e 's/^[[:space:]]*//' | sort -d | uniq)
|
2016-08-24 10:09:12 +02:00
|
|
|
if [ ! \$users_list ]; then
|
|
|
|
no_of_users=0
|
|
|
|
else
|
|
|
|
no_of_users=\$(echo "\$users_list" | wc -l)
|
|
|
|
fi
|
2016-08-23 20:58:18 +02:00
|
|
|
if [ \$no_of_users -gt 0 ]; then
|
2016-09-12 16:16:55 +02:00
|
|
|
echo "\$users_list" > /tmp/Users.txt
|
|
|
|
chown $MY_USERNAME:$MY_USERNAME /tmp/Users.txt
|
2016-08-24 22:04:01 +02:00
|
|
|
|
|
|
|
echo 'showing_users=\$(ps aux | grep $MESH_TEXT_EDITOR | grep "Users.txt")' > /home/$MY_USERNAME/showusers
|
|
|
|
echo 'if [ \${#showing_users} -eq 0 ]; then' >> /home/$MY_USERNAME/showusers
|
2016-09-12 16:16:55 +02:00
|
|
|
echo ' $MESH_TEXT_EDITOR /tmp/Users.txt' >> /home/$MY_USERNAME/showusers
|
2016-08-24 22:04:01 +02:00
|
|
|
echo 'fi' >> /home/$MY_USERNAME/showusers
|
|
|
|
echo 'exit 0' >> /home/$MY_USERNAME/showusers
|
|
|
|
chmod +x /home/$MY_USERNAME/showusers
|
|
|
|
chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/showusers
|
|
|
|
|
2016-08-23 18:59:54 +02:00
|
|
|
echo '[Desktop Entry]' > /home/$MY_USERNAME/Desktop/Users.desktop
|
2016-08-23 20:58:18 +02:00
|
|
|
if [ \$no_of_users -lt 2 ]; then
|
2016-08-24 21:22:34 +02:00
|
|
|
echo "Name=\$no_of_users Other User" >> /home/$MY_USERNAME/Desktop/Users.desktop
|
2016-08-23 18:59:54 +02:00
|
|
|
else
|
2016-08-24 21:22:34 +02:00
|
|
|
echo "Name=\$no_of_users Other Users" >> /home/$MY_USERNAME/Desktop/Users.desktop
|
2016-08-23 18:59:54 +02:00
|
|
|
fi
|
|
|
|
echo 'Type=Application' >> /home/$MY_USERNAME/Desktop/Users.desktop
|
|
|
|
echo 'Comment=List of users' >> /home/$MY_USERNAME/Desktop/Users.desktop
|
2016-08-24 22:04:01 +02:00
|
|
|
echo 'Exec=bash /home/$MY_USERNAME/showusers' >> /home/$MY_USERNAME/Desktop/Users.desktop
|
2016-09-22 18:56:47 +02:00
|
|
|
echo 'Icon=/usr/share/$PROJECT_NAME/avatars/otheruser.png' >> /home/$MY_USERNAME/Desktop/Users.desktop
|
2016-08-23 18:59:54 +02:00
|
|
|
echo 'StartupNotify=false' >> /home/$MY_USERNAME/Desktop/Users.desktop
|
|
|
|
chmod +x /home/$MY_USERNAME/Desktop/Users.desktop
|
|
|
|
chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/Desktop/Users.desktop
|
|
|
|
|
2016-09-12 16:21:03 +02:00
|
|
|
if [ -f /tmp/.ipfs-users ]; then
|
2016-09-06 23:30:41 +02:00
|
|
|
echo '[Desktop Entry]' > /home/$MY_USERNAME/Desktop/sites.desktop
|
2016-09-04 19:50:13 +02:00
|
|
|
echo 'Type=Application' >> /home/$MY_USERNAME/Desktop/sites.desktop
|
2016-09-06 23:30:41 +02:00
|
|
|
echo "Name=Visit a site" >> /home/$MY_USERNAME/Desktop/sites.desktop
|
2016-09-04 19:50:13 +02:00
|
|
|
echo 'Comment=Visit a site' >> /home/$MY_USERNAME/Desktop/sites.desktop
|
2016-09-22 18:56:47 +02:00
|
|
|
echo 'Exec=mate-terminal -e /usr/local/bin/${PROJECT_NAME}-mesh-visit-site' >> /home/$MY_USERNAME/Desktop/sites.desktop
|
|
|
|
echo 'Icon=/usr/share/${PROJECT_NAME}/avatars/ipfs.jpg' >> /home/$MY_USERNAME/Desktop/sites.desktop
|
2016-09-04 19:50:13 +02:00
|
|
|
echo 'StartupNotify=false' >> /home/$MY_USERNAME/Desktop/sites.desktop
|
|
|
|
chmod +x /home/$MY_USERNAME/Desktop/sites.desktop
|
|
|
|
chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/Desktop/sites.desktop
|
2016-09-08 21:45:04 +02:00
|
|
|
|
|
|
|
echo '[Desktop Entry]' > /home/$MY_USERNAME/Desktop/blog.desktop
|
|
|
|
echo 'Type=Application' >> /home/$MY_USERNAME/Desktop/blog.desktop
|
|
|
|
echo "Name=Blog" >> /home/$MY_USERNAME/Desktop/blog.desktop
|
|
|
|
echo 'Comment=View or create blog entries' >> /home/$MY_USERNAME/Desktop/blog.desktop
|
2016-09-22 18:56:47 +02:00
|
|
|
echo 'Exec=mate-terminal -e /usr/local/bin/${PROJECT_NAME}-mesh-blog' >> /home/$MY_USERNAME/Desktop/blog.desktop
|
|
|
|
echo 'Icon=/usr/share/${PROJECT_NAME}/avatars/blog.png' >> /home/$MY_USERNAME/Desktop/blog.desktop
|
2016-09-08 21:45:04 +02:00
|
|
|
echo 'StartupNotify=false' >> /home/$MY_USERNAME/Desktop/blog.desktop
|
|
|
|
chmod +x /home/$MY_USERNAME/Desktop/blog.desktop
|
|
|
|
chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/Desktop/blog.desktop
|
2016-09-04 19:50:13 +02:00
|
|
|
fi
|
|
|
|
|
2016-08-24 21:46:43 +02:00
|
|
|
if [ ! -f /home/$MY_USERNAME/runtox ]; then
|
2016-08-24 22:04:01 +02:00
|
|
|
echo 'qtox_running=\$(ps aux | grep qtox | grep data)' > /home/$MY_USERNAME/runtox
|
2016-08-24 21:46:43 +02:00
|
|
|
echo 'if [ \${#qtox_running} -eq 0 ]; then' >> /home/$MY_USERNAME/runtox
|
|
|
|
echo ' bash -c "qtox -p data"' >> /home/$MY_USERNAME/runtox
|
|
|
|
echo 'fi' >> /home/$MY_USERNAME/runtox
|
|
|
|
echo 'exit 0' >> /home/$MY_USERNAME/runtox
|
|
|
|
chmod +x /home/$MY_USERNAME/runtox
|
|
|
|
chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/runtox
|
2016-09-09 18:24:20 +02:00
|
|
|
fi
|
2016-08-24 21:46:43 +02:00
|
|
|
|
2016-09-09 18:24:20 +02:00
|
|
|
if [ ! -f /home/$MY_USERNAME/Desktop/tox.desktop ]; then
|
2016-08-23 18:59:54 +02:00
|
|
|
echo '[Desktop Entry]' > /home/$MY_USERNAME/Desktop/tox.desktop
|
2016-09-11 12:56:12 +02:00
|
|
|
echo 'Name=Chat' >> /home/$MY_USERNAME/Desktop/tox.desktop
|
2016-08-23 18:59:54 +02:00
|
|
|
echo 'Type=Application' >> /home/$MY_USERNAME/Desktop/tox.desktop
|
2016-10-01 21:39:57 +02:00
|
|
|
echo 'Comment=Chat, Voice and Video' >> /home/$MY_USERNAME/Desktop/tox.desktop
|
2016-08-31 12:28:56 +02:00
|
|
|
echo 'Exec=bash /home/$MY_USERNAME/runtox' >> /home/$MY_USERNAME/Desktop/tox.desktop
|
2016-09-11 12:56:12 +02:00
|
|
|
echo "Icon=/usr/share/$PROJECT_NAME/avatars/chat.png" >> /home/$MY_USERNAME/Desktop/tox.desktop
|
2016-08-23 18:59:54 +02:00
|
|
|
echo 'StartupNotify=true' >> /home/$MY_USERNAME/Desktop/tox.desktop
|
|
|
|
chmod +x /home/$MY_USERNAME/Desktop/tox.desktop
|
|
|
|
chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/Desktop/tox.desktop
|
|
|
|
fi
|
|
|
|
else
|
2016-09-12 16:16:55 +02:00
|
|
|
if [ -f /tmp/Users.txt ]; then
|
|
|
|
rm /tmp/Users.txt
|
2016-08-23 18:59:54 +02:00
|
|
|
rm /home/$MY_USERNAME/Desktop/Users.desktop
|
|
|
|
if [ -f /home/$MY_USERNAME/Desktop/Users.desktop ]; then
|
|
|
|
rm /home/$MY_USERNAME/Desktop/Users.desktop
|
|
|
|
fi
|
2016-09-04 19:50:13 +02:00
|
|
|
if [ -f /home/$MY_USERNAME/Desktop/sites.desktop ]; then
|
|
|
|
rm /home/$MY_USERNAME/Desktop/sites.desktop
|
|
|
|
fi
|
2016-09-08 21:45:04 +02:00
|
|
|
if [ -f /home/$MY_USERNAME/Desktop/blog.desktop ]; then
|
|
|
|
rm /home/$MY_USERNAME/Desktop/blog.desktop
|
|
|
|
fi
|
2016-08-23 18:59:54 +02:00
|
|
|
if [ -f /home/$MY_USERNAME/Desktop/tox.desktop ]; then
|
|
|
|
rm /home/$MY_USERNAME/Desktop/tox.desktop
|
|
|
|
fi
|
|
|
|
pkill qtox
|
|
|
|
fi
|
|
|
|
fi
|
2016-08-11 23:26:27 +02:00
|
|
|
EOF
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/chown $MY_USERNAME:$MY_USERNAME /usr/bin/list-tox-users
|
|
|
|
chroot "$rootdir" /bin/chmod +x /usr/bin/list-tox-users
|
2016-08-23 21:01:04 +02:00
|
|
|
echo "* * * * * $MY_USERNAME bash -c /usr/bin/list-tox-users > /dev/null" >> $rootdir/etc/crontab
|
2016-08-05 10:25:01 +02:00
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
if [[ $VARIANT != "usb" ]]; then
|
|
|
|
# log in automatically
|
|
|
|
chroot "$rootdir" apt-get -y install nodm xinit
|
|
|
|
echo 'NODM_ENABLED=true' > /etc/default/nodm
|
|
|
|
echo "NODM_USER=$MY_USERNAME" >> /etc/default/nodm
|
|
|
|
|
|
|
|
chroot "$rootdir" mkdir /etc/systemd/system/getty@tty1.service.d
|
|
|
|
echo '[Service]' > $rootdir/etc/systemd/system/getty@tty1.service.d/override.conf
|
|
|
|
echo 'ExecStart=' >> $rootdir/etc/systemd/system/getty@tty1.service.d/override.conf
|
|
|
|
echo 'ExecStart=-/sbin/agetty --autologin fbone --noclear %I $TERM' >> $rootdir/etc/systemd/system/getty@tty1.service.d/override.conf
|
|
|
|
|
|
|
|
echo '[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx' >> $rootdir/home/$MY_USERNAME/.profile
|
|
|
|
|
|
|
|
chroot "$rootdir" systemctl set-default multi-user.target
|
|
|
|
|
|
|
|
mesh_client_startup_applications
|
|
|
|
mesh_desktop_icons
|
|
|
|
|
|
|
|
# Different desktop background for amnesic
|
|
|
|
if [[ $AMNESIC != 'no' ]]; then
|
|
|
|
MESH_DESKTOP_BACKGROUND_IMAGE=/usr/local/share/${PROJECT_NAME}_mesh_amnesic_background.png
|
|
|
|
fi
|
|
|
|
|
|
|
|
# change the desktop background
|
|
|
|
if [ $MESH_DESKTOP_BACKGROUND_IMAGE ]; then
|
|
|
|
if [ -f $MESH_DESKTOP_BACKGROUND_IMAGE ]; then
|
|
|
|
if [ -d $rootdir/usr/share/images/desktop-base ]; then
|
|
|
|
cp $MESH_DESKTOP_BACKGROUND_IMAGE $rootdir/usr/share/images/desktop-base/${PROJECT_NAME}_mesh_background.png
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/rm /usr/share/images/desktop-base/desktop-background
|
2016-08-03 16:44:59 +02:00
|
|
|
chroot "$rootdir" ln -s /usr/share/images/desktop-base/${PROJECT_NAME}_mesh_background.png /usr/share/images/desktop-base/desktop-background
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install lightdm
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# browser
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install $BROWSER
|
2016-08-03 16:44:59 +02:00
|
|
|
|
2016-09-11 11:38:46 +02:00
|
|
|
# help
|
|
|
|
mkdir -p $rootdir/home/${MY_USERNAME}/help/images
|
2016-09-11 17:05:50 +02:00
|
|
|
cd $rootdir/root/${PROJECT_NAME}/website
|
|
|
|
./deploy.sh EN $rootdir/home/${MY_USERNAME}/help
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/chown -R ${MY_USERNAME}:${MY_USERNAME} /home/${MY_USERNAME}/help
|
2016-09-11 11:38:46 +02:00
|
|
|
|
2016-08-03 16:44:59 +02:00
|
|
|
# Tox user interface
|
|
|
|
enable_tox_repo
|
|
|
|
mesh_tox_qtox
|
|
|
|
# copy the default qtox ini file
|
|
|
|
if [ ! -d ${rootdir}/home/${MY_USERNAME}/.config/tox ]; then
|
|
|
|
mkdir ${rootdir}/home/${MY_USERNAME}/.config/tox
|
2016-09-22 18:56:47 +02:00
|
|
|
cp /usr/local/bin/${PROJECT_NAME}-config-qtox ${rootdir}/home/${MY_USERNAME}/.config/tox/qtox.ini
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/chown -R ${MY_USERNAME}:${MY_USERNAME} /home/${MY_USERNAME}/.config
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $VARIANT == "usb" ]]; then
|
|
|
|
# tor
|
2017-06-14 12:52:05 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install tor
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
# xmpp client
|
|
|
|
chroot "$rootdir" echo "deb ftp://ftp.gajim.org/debian unstable main" > /etc/apt/sources.list.d/gajim.list
|
|
|
|
chroot "$rootdir" apt-get update
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install gajim-dev-keyring
|
|
|
|
chroot "$rootdir" apt-get -yq install git python-dev python-pip gajim-nightly
|
2016-08-03 16:44:59 +02:00
|
|
|
chroot "$rootdir" mkdir /home/$GENERIC_IMAGE_USERNAME/.local/share/gajim/plugins -p
|
|
|
|
chroot "$rootdir" git clone https://github.com/omemo/gajim-omemo /home/$GENERIC_IMAGE_USERNAME/.local/share/gajim/plugins/gajim-omemo
|
|
|
|
chroot "$rootdir" pip install protobuf==2.6.1, python-axolotl==0.1.35
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/chown -R $GENERIC_IMAGE_USERNAME:$GENERIC_IMAGE_USERNAME /home/$GENERIC_IMAGE_USERNAME/.local
|
2016-08-03 16:44:59 +02:00
|
|
|
|
|
|
|
# IRC client
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install hexchat profanity
|
2016-08-03 16:44:59 +02:00
|
|
|
fi
|
2016-06-06 18:31:23 +02:00
|
|
|
}
|
|
|
|
|
2017-02-23 16:44:09 +01:00
|
|
|
##############################################################################
|
|
|
|
# setup_utils
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
function image_install_inadyn {
|
|
|
|
if [ $INSTALLING_MESH ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
if [ ! -d $rootdir/root/build ]; then
|
|
|
|
mkdir -p $rootdir/root/build
|
|
|
|
fi
|
2017-05-18 10:53:27 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install build-essential curl libgnutls28-dev automake1.11 libconfuse-dev
|
2017-06-15 13:43:52 +02:00
|
|
|
|
|
|
|
if [ -d /repos/inadyn ]; then
|
|
|
|
mkdir $rootdir/root/build/inadyn
|
2017-06-17 19:37:06 +02:00
|
|
|
cp -r -p /repos/inadyn/. $rootdir/root/build/inadyn
|
2017-06-15 13:43:52 +02:00
|
|
|
cd $rootdir/root/build/inadyn
|
|
|
|
git pull
|
|
|
|
else
|
|
|
|
git clone $INADYN_REPO $rootdir/root/build/inadyn
|
|
|
|
fi
|
|
|
|
|
2017-02-23 16:44:09 +01:00
|
|
|
if [ ! -d $rootdir/root/build/inadyn ]; then
|
|
|
|
echo 'Failed to clone inadyn'
|
|
|
|
exit 728252
|
|
|
|
fi
|
|
|
|
cd $rootdir/root/build/inadyn
|
|
|
|
git checkout $INADYN_COMMIT -b $INADYN_COMMIT
|
|
|
|
|
2017-02-23 23:12:07 +01:00
|
|
|
cd $rootdir/root/build/inadyn
|
|
|
|
echo '#!/bin/bash' > $rootdir/root/build/build_inadyn.sh
|
|
|
|
echo 'cd ~/build/inadyn' >> $rootdir/root/build/build_inadyn.sh
|
2017-05-18 10:56:00 +02:00
|
|
|
echo '#./autogen.sh' >> $rootdir/root/build/build_inadyn.sh
|
|
|
|
echo './configure' >> $rootdir/root/build/build_inadyn.sh
|
2017-02-23 23:12:07 +01:00
|
|
|
echo 'USE_OPENSSL=1 make' >> $rootdir/root/build/build_inadyn.sh
|
|
|
|
echo 'make install' >> $rootdir/root/build/build_inadyn.sh
|
|
|
|
chmod +x $rootdir/root/build/build_inadyn.sh
|
|
|
|
chroot "$rootdir" /root/build/build_inadyn.sh
|
2017-02-23 16:44:09 +01:00
|
|
|
if [ ! -f $rootdir/usr/local/sbin/inadyn ]; then
|
|
|
|
echo 'Failed to build inadyn'
|
|
|
|
exit 6209356
|
|
|
|
fi
|
|
|
|
|
|
|
|
# create a configuration file
|
|
|
|
echo 'background' > $rootdir/etc/inadyn.conf
|
|
|
|
echo 'verbose 1' >> $rootdir/etc/inadyn.conf
|
|
|
|
echo 'period 300' >> $rootdir/etc/inadyn.conf
|
|
|
|
echo 'startup-delay 60' >> $rootdir/etc/inadyn.conf
|
|
|
|
echo 'cache-dir /run/inadyn' >> $rootdir/etc/inadyn.conf
|
|
|
|
echo 'logfile /dev/null' >> $rootdir/etc/inadyn.conf
|
|
|
|
chmod 600 $rootdir/etc/inadyn.conf
|
|
|
|
|
|
|
|
echo '[Unit]' > $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo 'Description=inadyn (DynDNS updater)' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo 'After=network.target' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo '' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo '[Service]' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo 'ExecStart=/usr/local/sbin/inadyn --config /etc/inadyn.conf' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo 'Restart=always' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo 'Type=forking' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo '' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo '[Install]' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
echo 'WantedBy=multi-user.target' >> $rootdir/etc/systemd/system/inadyn.service
|
|
|
|
chroot "$rootdir" systemctl enable inadyn
|
|
|
|
echo "inadyn commit:$INADYN_COMMIT" >> $rootdir/root/freedombone-completed.txt
|
|
|
|
}
|
|
|
|
|
|
|
|
function image_setup_utils {
|
|
|
|
if [ $INSTALLING_MESH ]; then
|
|
|
|
return
|
|
|
|
fi
|
2017-05-30 14:45:19 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install apt-transport-https
|
2017-06-14 11:50:46 +02:00
|
|
|
chroot "$rootdir" apt-get -yq remove --purge apache2-bin*
|
2017-05-30 14:45:19 +02:00
|
|
|
chroot "$rootdir" apt-get -yq dist-upgrade
|
|
|
|
chroot "$rootdir" apt-get -yq install ca-certificates
|
|
|
|
chroot "$rootdir" apt-get -yq install apt-utils
|
2017-02-23 16:44:09 +01:00
|
|
|
|
|
|
|
if [[ $ARCHITECTURE == 'amd64' ]]; then
|
2017-05-29 14:57:39 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install linux-image-amd64
|
2017-02-24 16:44:01 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $ARCHITECTURE == 'qemu'* || $ARCHITECTURE == 'amd64' || $ARCHITECTURE == 'x86_64' || $ARCHITECTURE == 'i686' || $ARCHITECTURE == 'i386' ]]; then
|
2017-07-17 15:51:21 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install grub2 lvm2
|
2017-02-23 16:44:09 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
chroot "$rootdir" apt-get -yq install locales locales-all debconf
|
|
|
|
|
|
|
|
SYSCTL_FILE=$rootdir/etc/sysctl.conf
|
|
|
|
if [ ! -f $SYSCTL_FILE ]; then
|
|
|
|
touch $SYSCTL_FILE
|
|
|
|
fi
|
|
|
|
cp $SYSCTL_FILE $rootdir/root/sysctl.conf
|
|
|
|
chown $CURR_USER:$CURR_GROUP $rootdir/root/sysctl.conf
|
|
|
|
if ! grep -q "tcp_challenge_ack_limit" $rootdir/root/sysctl.conf; then
|
|
|
|
echo 'net.ipv4.tcp_challenge_ack_limit = 999999999' >> $rootdir/root/sysctl.conf
|
|
|
|
else
|
|
|
|
sed -i 's|net.ipv4.tcp_challenge_ack_limit.*|net.ipv4.tcp_challenge_ack_limit = 999999999|g' $rootdir/root/sysctl.conf
|
|
|
|
fi
|
|
|
|
cp $rootdir/root/sysctl.conf $SYSCTL_FILE
|
|
|
|
rm $rootdir/root/sysctl.conf
|
|
|
|
|
|
|
|
# all the packages
|
2017-08-25 19:27:12 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install cryptsetup libgfshare-bin duplicity sshpass wget
|
2017-08-24 14:56:00 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install avahi-daemon avahi-utils avahi-discover
|
|
|
|
chroot "$rootdir" apt-get -yq install connect-proxy openssh-server
|
2017-02-23 16:44:09 +01:00
|
|
|
chroot "$rootdir" apt-get -yq install sudo git dialog build-essential avahi-daemon avahi-utils
|
|
|
|
chroot "$rootdir" apt-get -yq install avahi-discover avahi-autoipd iptables dnsutils net-tools
|
|
|
|
chroot "$rootdir" apt-get -yq install network-manager iputils-ping libnss-mdns libnss-myhostname
|
|
|
|
chroot "$rootdir" apt-get -yq install libnss-gw-name nano man ntp locales locales-all debconf
|
|
|
|
chroot "$rootdir" apt-get -yq install wireless-tools wpasupplicant usbutils cryptsetup zsh
|
2017-02-23 18:04:09 +01:00
|
|
|
chroot "$rootdir" apt-get -yq install pinentry-curses eatmydata iotop bc hostapd haveged
|
|
|
|
chroot "$rootdir" apt-get -yq install cpulimit screen elinks libpam-cracklib
|
2017-08-07 14:56:25 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install vim-common python3 unattended-upgrades
|
2017-02-23 16:44:09 +01:00
|
|
|
|
|
|
|
# Tor and ssh over tor
|
2017-06-14 12:52:05 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install tor connect-proxy
|
2017-06-03 20:21:50 +02:00
|
|
|
chroot "$rootdir" connect-proxy
|
2017-02-23 16:44:09 +01:00
|
|
|
sed -i 's|#Log notice file.*|Log notice file /dev/null|g' $rootdir/etc/tor/torrc
|
|
|
|
sed -i 's|Log notice file.*|Log notice file /dev/null|g' $rootdir/etc/tor/torrc
|
2017-06-03 20:21:50 +02:00
|
|
|
sed -i "s|#AccountingMax.*|AccountingMax $TOR_MAX_TRAFFIC_PER_DAY_GB GBytes|g" $rootdir/etc/tor/torrc
|
|
|
|
sed -i "s|AccountingMax.*|AccountingMax $TOR_MAX_TRAFFIC_PER_DAY_GB GBytes|g" $rootdir/etc/tor/torrc
|
2017-02-23 16:44:09 +01:00
|
|
|
if ! grep -q 'Host *.onion' $rootdir/root/.ssh/config; then
|
|
|
|
if [ ! -d $rootdir/root/.ssh ]; then
|
|
|
|
mkdir $rootdir/root/.ssh
|
|
|
|
fi
|
|
|
|
echo 'Host *.onion' >> $rootdir/root/.ssh/config
|
|
|
|
echo 'ProxyCommand connect -R remote -5 -S 127.0.0.1:9050 %h %p' >> $rootdir/root/.ssh/config
|
|
|
|
fi
|
|
|
|
if ! grep -q 'Host *.onion' $rootdir/etc/skel/.ssh/config; then
|
|
|
|
if [ ! -d $rootdir/etc/skel/.ssh ]; then
|
|
|
|
mkdir $rootdir/etc/skel/.ssh
|
|
|
|
fi
|
|
|
|
echo 'Host *.onion' >> $rootdir/etc/skel/.ssh/config
|
|
|
|
echo 'ProxyCommand connect -R remote -5 -S 127.0.0.1:9050 %h %p' >> $rootdir/etc/skel/.ssh/config
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Install golang
|
|
|
|
chroot "$rootdir" adduser --disabled-login --gecos 'go' go
|
|
|
|
GOARCH=
|
|
|
|
if [[ $ARCHITECTURE == *"386" || $ARCHITECTURE == *"686" ]]; then
|
|
|
|
GOARCH=386
|
|
|
|
fi
|
|
|
|
if [[ $ARCHITECTURE == *"amd64" || $ARCHITECTURE == "x86_64" ]]; then
|
|
|
|
GOARCH=amd64
|
|
|
|
fi
|
|
|
|
if [[ $ARCHITECTURE == *"arm"* ]]; then
|
|
|
|
GOARCH=armv6l
|
|
|
|
fi
|
|
|
|
GO_SOURCE=https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${GOARCH}.tar.gz
|
|
|
|
|
|
|
|
if [ ! -d ${rootdir}/root/build ]; then
|
|
|
|
mkdir -p $rootdir/root/build
|
|
|
|
fi
|
|
|
|
cd $rootdir/root/build
|
|
|
|
wget ${GO_SOURCE}
|
|
|
|
if [ ! -f ${rootdir}/root/build/go${GO_VERSION}.linux-${GOARCH}.tar.gz ]; then
|
|
|
|
exit 26524
|
|
|
|
fi
|
|
|
|
chroot "$rootdir" tar -C /home/go -xzf ${INSTALL_DIR}/go${GO_VERSION}.linux-${GOARCH}.tar.gz
|
|
|
|
if [ ! -d ${rootdir}/home/go/go/bin ]; then
|
|
|
|
echo 'Go binary not installed'
|
|
|
|
exit 763562
|
|
|
|
fi
|
|
|
|
mv ${rootdir}/home/go/go ${rootdir}/home/go/go${GO_VERSION}
|
|
|
|
echo "export GOROOT=/home/go" >> ${rootdir}/root/.bashrc
|
|
|
|
echo "export GOROOT=/home/go" >> ${rootdir}/etc/skel/.bashrc
|
|
|
|
echo "export GOROOT=/home/go" >> ${rootdir}/home/go/.bashrc
|
|
|
|
echo "export GOPATH=\$GOROOT/go${GO_VERSION}/bin" >> ${rootdir}/root/.bashrc
|
|
|
|
echo "export GOPATH=\$GOROOT/go${GO_VERSION}/bin" >> ${rootdir}/etc/skel/.bashrc
|
|
|
|
echo "export GOPATH=\$GOROOT/go${GO_VERSION}/bin" >> ${rootdir}/home/go/.bashrc
|
|
|
|
echo 'export PATH=$PATH:$GOPATH' >> ${rootdir}/root/.bashrc
|
|
|
|
echo 'export PATH=$PATH:$GOPATH' >> ${rootdir}/etc/skel/.bashrc
|
|
|
|
echo 'export PATH=$PATH:$GOPATH' >> ${rootdir}/home/go/.bashrc
|
|
|
|
chroot "$rootdir" chown -R go:go /home/go
|
|
|
|
cp ${rootdir}/home/go/go${GO_VERSION}/bin/* ${rootdir}/usr/bin
|
|
|
|
|
|
|
|
# Tomb
|
|
|
|
chroot "$rootdir" apt-get -yq install zsh pinentry-curses
|
|
|
|
git clone $TOMB_REPO $rootdir/root/build/tomb
|
|
|
|
cd $rootdir/root/build/tomb
|
|
|
|
git checkout $TOMB_COMMIT -b $TOMB_COMMIT
|
2017-02-23 16:57:44 +01:00
|
|
|
chroot "$rootdir" cd /root/build/tomb && make install
|
2017-02-23 16:44:09 +01:00
|
|
|
echo "tomb commit:$TOMB_COMMIT" >> $rootdir/root/freedombone-completed.txt
|
|
|
|
|
2017-06-28 14:52:14 +02:00
|
|
|
if ! grep -q '* hard maxsyslogins' $rootdir/etc/security/limits.conf; then
|
2017-02-23 16:44:09 +01:00
|
|
|
echo '* hard maxsyslogins 10' >> $rootdir/etc/security/limits.conf
|
|
|
|
else
|
|
|
|
sed -i 's|hard maxsyslogins.*|hard maxsyslogins 10|g' $rootdir/etc/security/limits.conf
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Max logins for each user
|
2017-06-28 14:52:14 +02:00
|
|
|
if ! grep -q '* hard maxlogins' $rootdir/etc/security/limits.conf; then
|
2017-02-23 16:44:09 +01:00
|
|
|
echo '* hard maxlogins 2' >> $rootdir/etc/security/limits.conf
|
|
|
|
else
|
|
|
|
sed -i 's|hard maxlogins.*|hard maxlogins 2|g' $rootdir/etc/security/limits.conf
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Email
|
|
|
|
chroot "$rootdir" apt-get -yq remove postfix
|
2017-02-24 16:44:01 +01:00
|
|
|
chroot "$rootdir" apt-get -yq install exim4 exim4-daemon-heavy sasl2-bin swaks libnet-ssleay-perl procmail
|
2017-02-23 16:44:09 +01:00
|
|
|
chroot "$rootdir" apt-get -yq install spamassassin
|
2017-06-14 17:52:18 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install dovecot-imapd
|
2017-02-23 16:44:09 +01:00
|
|
|
|
|
|
|
#backup
|
2017-08-25 19:27:12 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install duplicity gnupg
|
2017-02-23 16:44:09 +01:00
|
|
|
|
|
|
|
# monkeysphere
|
2017-02-23 19:47:35 +01:00
|
|
|
#chroot "$rootdir" apt-get -yq install monkeysphere msva-perl
|
2017-02-23 16:44:09 +01:00
|
|
|
|
|
|
|
# encrypting email
|
|
|
|
chroot "$rootdir" apt-get -yq install libmail-gnupg-perl
|
|
|
|
git clone $GPGIT_REPO $rootdir/root/build/gpgit
|
|
|
|
cd $rootdir/root/build/gpgit
|
|
|
|
git checkout $GPGIT_COMMIT -b $GPGIT_COMMIT
|
2017-02-23 16:57:44 +01:00
|
|
|
cp $rootdir/root/build/gpgit/gpgit.pl $rootdir/usr/bin
|
2017-02-23 16:44:09 +01:00
|
|
|
echo "gpgit commit:$GPGIT_COMMIT" >> $rootdir/root/freedombone-completed.txt
|
|
|
|
|
|
|
|
# email client
|
2017-05-29 16:50:34 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install lynx abook urlview mutt
|
2017-02-23 16:44:09 +01:00
|
|
|
|
|
|
|
git clone $CLEANUP_MAILDIR_REPO $rootdir/root/build/cleanup-maildir
|
|
|
|
cd $rootdir/root/build/cleanup-maildir
|
|
|
|
git checkout $CLEANUP_MAILDIR_COMMIT -b $CLEANUP_MAILDIR_COMMIT
|
|
|
|
cp $rootdir/root/build/cleanup-maildir/cleanup-maildir $rootdir/usr/bin
|
|
|
|
echo "cleanup-maildir commit:$CLEANUP_MAILDIR_COMMIT" >> $rootdir/root/freedombone-completed.txt
|
|
|
|
|
|
|
|
# web server
|
|
|
|
chroot "$rootdir" apt-get -yq remove --purge apache2
|
2017-05-29 15:40:34 +02:00
|
|
|
chroot "$rootdir" apt-get -yq install nginx php-fpm
|
2017-02-23 20:27:33 +01:00
|
|
|
git clone $NGINX_ENSITE_REPO $rootdir/root/build/nginx_ensite
|
2017-02-23 16:44:09 +01:00
|
|
|
cd $rootdir/root/build/nginx_ensite
|
|
|
|
git checkout $NGINX_ENSITE_COMMIT -b $NGINX_ENSITE_COMMIT
|
|
|
|
echo "nginx-ensite commit:$NGINX_ENSITE_COMMIT" >> $rootdir/root/freedombone-completed.txt
|
2017-02-23 23:12:07 +01:00
|
|
|
chroot "$rootdir" cd /root/build/nginx_ensite && make install
|
2017-02-23 16:44:09 +01:00
|
|
|
if [ ! -f $rootdir/etc/pam.d/nginx ]; then
|
|
|
|
echo '#%PAM-1.0' > $rootdir/etc/pam.d/nginx
|
|
|
|
echo '@include common-auth' >> $rootdir/etc/pam.d/nginx
|
|
|
|
echo '@include common-account' >> $rootdir/etc/pam.d/nginx
|
|
|
|
echo '@include common-session' >> $rootdir/etc/pam.d/nginx
|
|
|
|
fi
|
|
|
|
chroot "$rootdir" apt-get -yq install tripwire
|
2017-02-24 16:44:01 +01:00
|
|
|
|
2017-06-17 13:26:00 +02:00
|
|
|
# filesystem optimisations
|
2017-06-27 11:32:46 +02:00
|
|
|
#sed -i 's|btrfs subvol=@|btrfs defaults,subvol=@,compress=lzo,ssd|g' $rootdir/etc/fstab
|
2017-02-23 16:44:09 +01:00
|
|
|
}
|
|
|
|
|
2017-05-18 13:50:24 +02:00
|
|
|
function image_install_nodejs {
|
2017-06-15 22:55:42 +02:00
|
|
|
mesh_install_nodejs
|
2017-06-16 00:13:17 +02:00
|
|
|
#echo 'install_nodejs' >> ${rootdir}/root/${PROJECT_NAME}-completed.txt
|
2017-05-18 13:50:24 +02:00
|
|
|
}
|
|
|
|
|
2017-06-15 13:33:16 +02:00
|
|
|
function image_preinstall_repos {
|
2017-06-19 13:03:01 +02:00
|
|
|
if [[ $VARIANT == "mesh"* ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2017-06-15 13:33:16 +02:00
|
|
|
if [ ! -d $rootdir/repos ]; then
|
|
|
|
mkdir $rootdir/repos
|
|
|
|
fi
|
2017-06-16 16:39:48 +02:00
|
|
|
|
2017-06-15 13:43:52 +02:00
|
|
|
git clone $CMAKE_REPO $rootdir/repos/cmake
|
|
|
|
git clone $INADYN_REPO $rootdir/repos/inadyn
|
2017-06-15 13:53:24 +02:00
|
|
|
git clone $TOMB_REPO $rootdir/repos/tomb
|
2017-06-16 16:39:48 +02:00
|
|
|
|
|
|
|
if [[ $SOCIALINSTANCE == "gnusocial" ]]; then
|
|
|
|
git clone $GNUSOCIAL_REPO $rootdir/repos/gnusocial
|
|
|
|
git clone $GNUSOCIAL_MARKDOWN_REPO $rootdir/repos/gnusocial-markdown
|
2017-08-29 12:49:02 +02:00
|
|
|
#git clone $QVITTER_THEME_REPO $rootdir/repos/qvitter
|
2017-06-16 16:39:48 +02:00
|
|
|
git clone $PLEROMA_REPO $rootdir/repos/pleroma
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $SOCIALINSTANCE == "postactiv" ]]; then
|
|
|
|
git clone $GNUSOCIAL_MARKDOWN_REPO $rootdir/repos/gnusocial-markdown
|
2017-08-29 12:49:02 +02:00
|
|
|
#git clone $QVITTER_THEME_REPO $rootdir/repos/qvitter
|
2017-06-16 16:39:48 +02:00
|
|
|
git clone $PLEROMA_REPO $rootdir/repos/pleroma
|
2017-08-29 12:49:02 +02:00
|
|
|
#git clone $POSTACTIV_REPO $rootdir/repos/postactiv
|
2017-06-16 16:39:48 +02:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2017-06-15 13:33:16 +02:00
|
|
|
git clone $CRYPTPAD_REPO $rootdir/repos/cryptpad
|
|
|
|
git clone $DOKUWIKI_REPO $rootdir/repos/dokuwiki
|
|
|
|
git clone $ETHERPAD_REPO $rootdir/repos/etherpad
|
|
|
|
git clone $FRIENDICA_REPO $rootdir/repos/friendica
|
|
|
|
git clone $GNUSOCIAL_REPO $rootdir/repos/gnusocial
|
|
|
|
git clone $GNUSOCIAL_MARKDOWN_REPO $rootdir/repos/gnusocial-markdown
|
2017-08-29 12:49:02 +02:00
|
|
|
#git clone $QVITTER_THEME_REPO $rootdir/repos/qvitter
|
2017-06-15 13:33:16 +02:00
|
|
|
git clone $PLEROMA_REPO $rootdir/repos/pleroma
|
2017-08-29 12:49:02 +02:00
|
|
|
#git clone $POSTACTIV_REPO $rootdir/repos/postactiv
|
2017-06-15 13:33:16 +02:00
|
|
|
git clone $SHARINGS_REPO $rootdir/repos/sharings
|
|
|
|
git clone $HTMLY_REPO $rootdir/repos/htmly
|
|
|
|
git clone $HUBZILLA_REPO $rootdir/repos/hubzilla
|
|
|
|
git clone $HUBZILLA_ADDONS_REPO $rootdir/repos/hubzilla-addons
|
|
|
|
git clone $KOEL_REPO $rootdir/repos/koel
|
|
|
|
#git clone $LIBREVAULT_REPO $rootdir/repos/librevault
|
|
|
|
git clone $LYCHEE_REPO $rootdir/repos/lychee
|
|
|
|
git clone $MAILPILE_REPO $rootdir/repos/mailpile
|
|
|
|
git clone $MATRIX_REPO $rootdir/repos/matrix
|
|
|
|
git clone $MEDIAGOBLIN_REPO $rootdir/repos/mediagoblin
|
|
|
|
#git clone $MOVIM_REPO $rootdir/repos/movim
|
|
|
|
git clone $NEXTCLOUD_REPO $rootdir/repos/nextcloud
|
|
|
|
git clone $PIHOLE_REPO $rootdir/repos/pihole
|
|
|
|
git clone $PROFANITY_REPO $rootdir/repos/profanity
|
|
|
|
git clone $LIBMESODE_REPO $rootdir/repos/libmesode
|
|
|
|
git clone $PROFANITY_OMEMO_PLUGIN_REPO $rootdir/repos/profanity-omemo
|
|
|
|
git clone $RSS_READER_REPO $rootdir/repos/rss
|
|
|
|
git clone $RSS_MOBILE_READER_REPO $rootdir/repos/rss-mobile
|
|
|
|
git clone $SEARX_REPO $rootdir/repos/searx
|
2017-06-17 15:16:32 +02:00
|
|
|
git clone $TOXCORE_REPO $rootdir/repos/toxcore
|
|
|
|
git clone $TOXID_REPO $rootdir/repos/toxid
|
|
|
|
git clone $TOXIC_REPO $rootdir/repos/toxic
|
2017-06-15 13:33:16 +02:00
|
|
|
git clone $TURTL_REPO $rootdir/repos/turtl
|
2017-07-25 22:39:27 +02:00
|
|
|
git clone $KANBOARD_REPO $rootdir/repos/kanboard
|
2017-07-27 22:51:12 +02:00
|
|
|
git clone $KEYSERVER_WEB_REPO $rootdir/repos/keyserverweb
|
2017-07-25 22:39:27 +02:00
|
|
|
#git clone $WEKAN_REPO $rootdir/repos/wekan
|
|
|
|
#git clone $FLOW_ROUTER_REPO $rootdir/repos/flowrouter
|
|
|
|
#git clone $METEOR_USERACCOUNTS_REPO $rootdir/repos/meteoruseraccounts
|
|
|
|
#git clone $METEOR_REPO $rootdir/repos/meteor
|
2017-06-15 13:33:16 +02:00
|
|
|
#git clone $ZERONET_REPO $rootdir/repos/zeronet
|
2017-06-17 15:16:32 +02:00
|
|
|
#git clone $QTOX_REPO $rootdir/repos/qtox
|
2017-06-15 13:33:16 +02:00
|
|
|
}
|
|
|
|
|
2016-05-28 13:16:00 +02:00
|
|
|
##############################################################################
|
2016-05-27 15:18:02 +02:00
|
|
|
|
2016-04-26 16:41:35 +02:00
|
|
|
|
2015-11-20 17:09:21 +01:00
|
|
|
# Set to true/false to control if eatmydata is used during build
|
|
|
|
use_eatmydata=true
|
|
|
|
|
|
|
|
rootdir="$1"
|
|
|
|
fmdir="$(pwd)"
|
|
|
|
image="$fmdir"/"$2"
|
|
|
|
cd "$rootdir"
|
|
|
|
|
|
|
|
echo info: building $MACHINE for $ARCHITECTURE
|
|
|
|
|
|
|
|
export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true
|
|
|
|
export LC_ALL=C LANGUAGE=C LANG=C
|
|
|
|
|
|
|
|
# Override libpam-tmpdir setting during build, as the directories
|
|
|
|
# are not created yet.
|
|
|
|
export TMP=/tmp/ TMPDIR=/tmp/
|
|
|
|
|
2016-07-12 16:11:45 +02:00
|
|
|
if [ ! $MY_USERNAME ]; then
|
2016-08-03 16:44:59 +02:00
|
|
|
echo $'No username was specified'
|
|
|
|
exit 52825
|
2016-07-12 16:11:45 +02:00
|
|
|
fi
|
2015-11-20 22:43:03 +01:00
|
|
|
username=$MY_USERNAME
|
2015-11-27 16:29:43 +01:00
|
|
|
echo $"warning: creating initial user $username with well known password!"
|
2015-11-20 22:43:03 +01:00
|
|
|
password=$MY_PASSWORD
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /usr/bin/env -i \
|
|
|
|
HOME=/root \
|
|
|
|
PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin
|
|
|
|
echo "export PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:" >> $rootdir/root/.bashrc
|
2015-11-22 14:07:48 +01:00
|
|
|
chroot "$rootdir" adduser --gecos $username --disabled-password $username
|
2016-09-23 00:03:02 +02:00
|
|
|
echo $username:$password | chroot "$rootdir" /usr/sbin/chpasswd
|
2015-11-22 14:07:48 +01:00
|
|
|
chroot "$rootdir" adduser $username sudo
|
2015-11-20 17:09:21 +01:00
|
|
|
|
2016-08-13 11:43:23 +02:00
|
|
|
if [ ! $DEBIAN_REPO ]; then
|
|
|
|
DEBIAN_REPO='ftp.de.debian.org'
|
|
|
|
fi
|
|
|
|
if [ ! $DEBIAN_VERSION ]; then
|
2017-05-29 14:57:39 +02:00
|
|
|
DEBIAN_VERSION='stretch'
|
2016-08-13 11:43:23 +02:00
|
|
|
fi
|
|
|
|
|
2015-11-20 17:09:21 +01:00
|
|
|
set_apt_sources $BUILD_MIRROR
|
2016-01-28 11:11:28 +01:00
|
|
|
chroot "$rootdir" apt-get clean
|
2016-09-23 00:03:02 +02:00
|
|
|
chroot "$rootdir" /bin/rm -rf /var/lib/apt/lists/*
|
2016-01-28 11:11:28 +01:00
|
|
|
chroot "$rootdir" apt-get clean
|
2016-08-13 11:43:23 +02:00
|
|
|
set_apt_sources $MIRROR
|
2016-08-13 11:12:23 +02:00
|
|
|
configure_backports
|
|
|
|
configure_contrib_repo
|
2015-11-22 14:07:48 +01:00
|
|
|
chroot "$rootdir" apt-get update
|
2016-09-27 23:45:59 +02:00
|
|
|
chroot "$rootdir" apt-get install -y apt-utils
|
2015-11-20 17:09:21 +01:00
|
|
|
|
|
|
|
cat > $rootdir/usr/sbin/policy-rc.d <<EOF
|
2016-04-28 15:36:45 +02:00
|
|
|
#!/bin/sh
|
|
|
|
exit 101
|
|
|
|
EOF
|
2015-11-20 17:09:21 +01:00
|
|
|
chmod a+rx $rootdir/usr/sbin/policy-rc.d
|
|
|
|
|
|
|
|
if $use_eatmydata ; then
|
2016-08-03 16:44:59 +02:00
|
|
|
enable_eatmydata_override
|
2015-11-20 17:09:21 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$CUSTOM_SETUP" ]; then
|
2016-08-03 16:44:59 +02:00
|
|
|
cp "$CUSTOM_SETUP" "$rootdir"/tmp
|
|
|
|
chroot "$rootdir" apt-get install -y gdebi-core
|
|
|
|
chroot "$rootdir" gdebi -n /tmp/"$(basename $CUSTOM_SETUP)"
|
2015-11-20 17:09:21 +01:00
|
|
|
fi
|
|
|
|
|
2017-06-19 13:03:01 +02:00
|
|
|
if [[ $VARIANT != "mesh"* ]]; then
|
2016-08-11 14:56:25 +02:00
|
|
|
chroot "$rootdir" apt-get install -y openssh-server
|
|
|
|
fi
|
2016-10-14 11:34:05 +02:00
|
|
|
chroot "$rootdir" apt-get install -y sudo git dialog build-essential
|
2015-11-25 10:51:35 +01:00
|
|
|
chroot "$rootdir" apt-get install -y avahi-daemon avahi-utils avahi-discover avahi-autoipd
|
2015-11-26 23:08:44 +01:00
|
|
|
chroot "$rootdir" apt-get install -y iptables dnsutils net-tools network-manager iputils-ping
|
2015-11-29 16:00:10 +01:00
|
|
|
chroot "$rootdir" apt-get install -y libnss-mdns libnss-myhostname libnss-gw-name nano man ntp
|
2016-09-27 23:45:59 +02:00
|
|
|
chroot "$rootdir" apt-get install -y locales locales-all debconf wireless-tools wpasupplicant usbutils
|
2016-09-23 16:21:15 +02:00
|
|
|
if [[ $ARCHITECTURE == 'qemu'* || $ARCHITECTURE == 'i386' || $ARCHITECTURE == 'i686' || $ARCHITECTURE == 'amd64' || $ARCHITECTURE == 'x86_64' ]]; then
|
2016-09-27 23:45:59 +02:00
|
|
|
chroot "$rootdir" apt-get install -y cryptsetup zsh pinentry-curses iotop bc
|
2017-07-17 15:51:21 +02:00
|
|
|
chroot "$rootdir" apt-get install -y grub2 hostapd lvm2
|
2016-09-23 12:51:30 +02:00
|
|
|
fi
|
2015-11-25 10:51:35 +01:00
|
|
|
|
2017-06-22 15:18:15 +02:00
|
|
|
sed -i "s|#host-name=.*|host-name=${LOCAL_NAME}|g" $rootdir/etc/avahi/avahi-daemon.conf
|
|
|
|
sed -i "s|host-name=.*|host-name=${LOCAL_NAME}|g" $rootdir/etc/avahi/avahi-daemon.conf
|
2017-06-02 12:10:47 +02:00
|
|
|
sed -i "s|use-ipv4=.*|use-ipv4=yes|g" $rootdir/etc/avahi/avahi-daemon.conf
|
|
|
|
sed -i "s|use-ipv6=.*|use-ipv6=no|g" $rootdir/etc/avahi/avahi-daemon.conf
|
|
|
|
sed -i "s|#disallow-other-stacks=.*|disallow-other-stacks=yes|g" $rootdir/etc/avahi/avahi-daemon.conf
|
|
|
|
sed -i "s|hosts:.*|hosts: files mdns4_minimal dns mdns4 mdns|g" $rootdir/etc/nsswitch.conf
|
2015-11-29 17:20:20 +01:00
|
|
|
|
2017-06-02 18:03:41 +02:00
|
|
|
# Add an ssh avahi service
|
|
|
|
echo '<?xml version="1.0" standalone="no"?><!--*-nxml-*-->' > $rootdir/etc/avahi/services/ssh.service
|
|
|
|
echo '<!DOCTYPE service-group SYSTEM "avahi-service.dtd">' >> $rootdir/etc/avahi/services/ssh.service
|
|
|
|
echo '<service-group>' >> $rootdir/etc/avahi/services/ssh.service
|
|
|
|
echo ' <name replace-wildcards="yes">%h SSH</name>' >> $rootdir/etc/avahi/services/ssh.service
|
|
|
|
echo ' <service>' >> $rootdir/etc/avahi/services/ssh.service
|
|
|
|
echo ' <type>_ssh._tcp</type>' >> $rootdir/etc/avahi/services/ssh.service
|
|
|
|
echo " <port>$SSH_PORT</port>" >> $rootdir/etc/avahi/services/ssh.service
|
|
|
|
echo ' </service>' >> $rootdir/etc/avahi/services/ssh.service
|
|
|
|
echo '</service-group>' >> $rootdir/etc/avahi/services/ssh.service
|
|
|
|
|
2017-06-02 18:08:30 +02:00
|
|
|
# Ensure that the avahi daemon keeps running
|
|
|
|
WATCHDOG_SCRIPT_NAME="keepon"
|
2017-06-02 18:03:41 +02:00
|
|
|
echo '#!/bin/bash' > $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo 'LOGFILE=/var/log/keepon.log' >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo 'CURRENT_DATE=$(date)' >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo '' >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo "# keep avahi-daemon daemon running" >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo "RUNNING=$(pgrep avahi-daemon > /dev/null && echo Running)" >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo 'if [ ! $RUNNING ]; then' >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo " systemctl start avahi-daemon" >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo ' echo -n $CURRENT_DATE >> $LOGFILE' >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo " echo \"avahi-daemon daemon restarted\" >> \$LOGFILE" >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo 'fi' >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo "# End of avahi-daemon" >> $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
chmod +x $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
|
|
|
|
echo "*/1 * * * * root /usr/bin/$WATCHDOG_SCRIPT_NAME" >> $rootdir/etc/crontab
|
|
|
|
|
2015-11-22 14:07:48 +01:00
|
|
|
chroot "$rootdir" /bin/bash -x <<EOF
|
2016-04-28 15:36:45 +02:00
|
|
|
git clone $PROJECT_REPO /root/$PROJECT_NAME
|
|
|
|
cd /root/$PROJECT_NAME
|
2017-06-08 12:12:05 +02:00
|
|
|
git checkout stretch
|
2016-04-28 15:36:45 +02:00
|
|
|
make install
|
2017-05-31 18:30:11 +02:00
|
|
|
cp image_build/bbb-4.9.0.tar.gz /boot/bbb.tar.gz
|
2016-04-28 15:36:45 +02:00
|
|
|
EOF
|
2015-11-20 17:09:21 +01:00
|
|
|
|
2015-12-01 09:32:30 +01:00
|
|
|
chroot "$rootdir" ${PROJECT_NAME}-image-hardware-setup 2>&1 | \
|
2016-08-03 16:44:59 +02:00
|
|
|
tee $rootdir/var/log/${PROJECT_NAME}-image-hardware-setup.log
|
2015-11-20 17:09:21 +01:00
|
|
|
|
|
|
|
rm $rootdir/usr/sbin/policy-rc.d
|
|
|
|
|
2015-11-29 12:34:57 +01:00
|
|
|
# Set up HRNG for systems known to have one
|
|
|
|
# Otherwise install haveged
|
2017-01-05 15:12:08 +01:00
|
|
|
if [[ "$MACHINE" != "beaglebone"* ]]; then
|
2017-07-10 11:08:56 +02:00
|
|
|
# With some VMs, the hardware cycles counter is emulated and deterministic,
|
|
|
|
# and thus predictible, so havege should not be used
|
|
|
|
if [[ "$MACHINE" != "qemu"* ]]; then
|
|
|
|
chroot $rootdir apt-get -yq install haveged
|
|
|
|
fi
|
2015-11-22 14:07:48 +01:00
|
|
|
else
|
2016-10-23 20:38:14 +02:00
|
|
|
chroot $rootdir apt-get -yq install rng-tools
|
2016-08-03 16:44:59 +02:00
|
|
|
sed -i 's|#HRNGDEVICE=/dev/hwrng|HRNGDEVICE=/dev/hwrng|g' $rootdir/etc/default/rng-tools
|
2017-01-05 15:12:08 +01:00
|
|
|
|
2015-11-22 14:07:48 +01:00
|
|
|
fi
|
|
|
|
|
2015-11-20 17:09:21 +01:00
|
|
|
# copy u-boot to beginning of image
|
|
|
|
case "$MACHINE" in
|
2016-08-03 16:44:59 +02:00
|
|
|
beaglebone)
|
|
|
|
dd if=$rootdir/usr/lib/u-boot/am335x_boneblack/MLO of="$image" \
|
|
|
|
count=1 seek=1 conv=notrunc bs=128k
|
|
|
|
dd if=$rootdir/usr/lib/u-boot/am335x_boneblack/u-boot.img of="$image" \
|
|
|
|
count=2 seek=1 conv=notrunc bs=384k
|
|
|
|
;;
|
2017-01-05 15:12:08 +01:00
|
|
|
beaglebonewifi)
|
|
|
|
touch $rootdir/root/.wifi-only
|
|
|
|
dd if=$rootdir/usr/lib/u-boot/am335x_boneblack/MLO of="$image" \
|
|
|
|
count=1 seek=1 conv=notrunc bs=128k
|
|
|
|
dd if=$rootdir/usr/lib/u-boot/am335x_boneblack/u-boot.img of="$image" \
|
|
|
|
count=2 seek=1 conv=notrunc bs=384k
|
|
|
|
;;
|
2016-08-03 16:44:59 +02:00
|
|
|
cubieboard2)
|
|
|
|
dd if=$rootdir/usr/lib/u-boot/Cubieboard2/u-boot-sunxi-with-spl.bin of="$image" \
|
|
|
|
seek=8 conv=notrunc bs=1k
|
|
|
|
;;
|
|
|
|
a20-olinuxino-lime)
|
|
|
|
dd if=$rootdir/usr/lib/u-boot/A20-OLinuXino-Lime/u-boot-sunxi-with-spl.bin \
|
|
|
|
of="$image" seek=8 conv=notrunc bs=1k
|
|
|
|
;;
|
2015-11-20 17:09:21 +01:00
|
|
|
esac
|
|
|
|
|
|
|
|
if $use_eatmydata ; then
|
2016-08-03 16:44:59 +02:00
|
|
|
disable_eatmydata_override
|
2015-11-20 17:09:21 +01:00
|
|
|
fi
|
|
|
|
|
2015-11-21 15:33:39 +01:00
|
|
|
configure_ssh
|
2015-11-21 14:12:31 +01:00
|
|
|
configure_networking
|
2015-11-22 14:43:23 +01:00
|
|
|
admin_user_sudo
|
2015-11-23 11:33:45 +01:00
|
|
|
create_generic_image
|
2015-12-22 12:07:00 +01:00
|
|
|
atheros_wifi
|
2015-12-22 12:43:07 +01:00
|
|
|
continue_installation
|
2016-01-11 12:27:08 +01:00
|
|
|
initialise_mesh
|
2016-04-26 16:41:35 +02:00
|
|
|
configure_wifi
|
2016-06-06 18:31:23 +02:00
|
|
|
configure_user_interface
|
2017-02-23 16:44:09 +01:00
|
|
|
image_setup_utils
|
|
|
|
image_install_inadyn
|
2017-05-18 13:50:24 +02:00
|
|
|
image_install_nodejs
|
2017-06-15 13:33:16 +02:00
|
|
|
image_preinstall_repos
|
2015-11-21 12:56:40 +01:00
|
|
|
|
2016-08-23 15:52:44 +02:00
|
|
|
# remove downloaded packages
|
2017-02-23 16:44:09 +01:00
|
|
|
chroot $rootdir apt-get -y autoremove
|
2016-08-23 15:52:44 +02:00
|
|
|
chroot $rootdir apt-get clean
|
|
|
|
|
2015-11-20 17:09:21 +01:00
|
|
|
cd /
|
2015-11-27 16:29:43 +01:00
|
|
|
echo $"info: killing leftover processes in chroot"
|
2015-11-20 17:09:21 +01:00
|
|
|
fuser -mvk $rootdir/. || true
|
2016-04-28 15:05:37 +02:00
|
|
|
|
|
|
|
exit 0
|