2018-08-06 01:03:17 +02:00
#!/bin/bash
2019-01-27 11:03:07 +01:00
#########################################################################
# Build your SD card image based on:
2019-04-17 04:39:08 +02:00
# RASPBIAN STRETCH WITH DESKTOP (2019-04-09)
2019-01-30 13:16:25 +01:00
# https://www.raspberrypi.org/downloads/raspbian/
2019-04-17 04:39:08 +02:00
# SHA256: 7e10a446f8e57210d0e9ad02f0c833aabb86e58187b4dc02431aff5a3f1ccb83
2019-01-30 13:16:25 +01:00
#
# or download the image for your ARM based SBC on https://DietPi.com
2019-01-27 11:03:07 +01:00
##########################################################################
# setup fresh SD card with image above - login per SSH and run this script:
##########################################################################
2018-08-06 11:46:22 +02:00
echo ""
2018-12-10 00:50:50 +01:00
echo "*****************************************"
2019-04-09 14:53:42 +02:00
echo "* RASPIBLITZ SD CARD IMAGE SETUP v1.2 *"
2018-12-10 00:50:50 +01:00
echo "*****************************************"
2018-08-06 11:46:22 +02:00
echo ""
2018-12-22 13:57:49 +01:00
# 1st optional parameter is the BRANCH to get code from when
2018-12-10 00:50:50 +01:00
# provisioning sd card with raspiblitz assets/scripts later on
echo "*** CHECK INPUT PARAMETERS ***"
wantedBranch = " $1 "
if [ ${# wantedBranch } -eq 0 ] ; then
wantedBranch = "master"
fi
echo " will use code from branch --> ' ${ wantedBranch } ' "
2018-12-22 13:57:49 +01:00
2018-12-24 15:26:30 +01:00
# 2nd optional parameter is the GITHUB-USERNAME to get code from when
2018-12-22 13:57:49 +01:00
# provisioning sd card with raspiblitz assets/scripts later on
2019-01-30 23:29:04 +01:00
# if 2nd parameter is used - 1st is mandatory
2018-12-22 13:57:49 +01:00
echo "*** CHECK INPUT PARAMETERS ***"
githubUser = " $2 "
if [ ${# githubUser } -eq 0 ] ; then
githubUser = "rootzoll"
fi
echo " will use code from user --> ' ${ githubUser } ' "
2018-12-10 00:50:50 +01:00
sleep 3
2018-08-06 11:46:22 +02:00
echo ""
2018-10-13 22:43:07 +02:00
echo "*** CHECK BASE IMAGE ***"
# armv7=32Bit , armv8=64Bit
echo "Check if Linux ARM based ..."
isARM = $( uname -m | grep -c 'arm' )
2019-04-14 12:08:18 +02:00
isAARCH64 = $( uname -m | grep -c 'aarch64' )
2019-05-07 02:42:51 +02:00
isX86_64 = $( uname -m | grep -c 'x86_64' )
if [ ${ isARM } -eq 0 ] && [ ${ isAARCH64 } -eq 0 ] && [ ${ isX86_64 } -eq 0 ] ; then
2018-10-13 22:43:07 +02:00
echo "!!! FAIL !!!"
2019-05-07 02:42:51 +02:00
echo "Can only build on ARM, aarch64 or x86_64 not on:"
2018-10-13 22:43:07 +02:00
uname -m
exit 1
2019-04-14 12:08:18 +02:00
else
echo " OK running on $( uname -m) architecture. "
2018-10-13 22:43:07 +02:00
fi
2018-11-11 13:42:46 +01:00
# keep in mind that DietPi for Raspberry is also a stripped down Raspbian
2018-10-13 22:43:07 +02:00
echo "Detect Base Image ..."
baseImage = "?"
isDietPi = $( uname -n | grep -c 'DietPi' )
isRaspbian = $( cat /etc/os-release 2>/dev/null | grep -c 'Raspbian' )
2019-04-14 12:08:18 +02:00
isArmbian = $( cat /etc/os-release 2>/dev/null | grep -c 'Debian' )
isUbuntu = $( cat /etc/os-release 2>/dev/null | grep -c 'Ubuntu' )
2018-10-13 22:43:07 +02:00
if [ ${ isRaspbian } -gt 0 ] ; then
baseImage = "raspbian"
fi
2019-04-14 12:08:18 +02:00
if [ ${ isArmbian } -gt 0 ] ; then
baseImage = "armbian"
fi
if [ ${ isUbuntu } -gt 0 ] ; then
baseImage = "ubuntu"
fi
2018-10-13 22:43:07 +02:00
if [ ${ isDietPi } -gt 0 ] ; then
baseImage = "dietpi"
fi
if [ " ${ baseImage } " = "?" ] ; then
cat /etc/os-release 2>/dev/null
echo "!!! FAIL !!!"
echo "Base Image cannot be detected or is not supported."
exit 1
else
echo " OK running ${ baseImage } "
fi
2019-03-13 17:00:44 +01:00
# setting static DNS server
# see https://github.com/rootzoll/raspiblitz/issues/322#issuecomment-466733550
2019-04-14 12:08:18 +02:00
# check /etc/dhcpd.conf and /etc/dhcp/dhcpd.conf
if [ " ${ baseImage } " = "raspbian" ] || [ " ${ baseImage } " = "dietpi" ] ; then
sudo sed -i "s/^#static domain_name_servers=192.168.0.1*/static domain_name_servers=1.1.1.1/g" /etc/dhcpcd.conf
systemctl daemon-reload
fi
if [ " ${ baseImage } " = "ubuntu" ] ; then
sudo sed -i "s/^#static domain_name_servers=192.168.0.1*/static domain_name_servers=1.1.1.1/g" /etc/dhcp/dhcpd.conf
systemctl daemon-reload
fi
2019-03-13 17:00:44 +01:00
2019-04-14 12:08:18 +02:00
if [ " ${ baseImage } " = "raspbian" ] || [ " ${ baseImage } " = "dietpi" ] ; then
# fixing locales for build
# https://github.com/rootzoll/raspiblitz/issues/138
# https://daker.me/2014/10/how-to-fix-perl-warning-setting-locale-failed-in-raspbian.html
# https://stackoverflow.com/questions/38188762/generate-all-locales-in-a-docker-image
echo ""
echo "*** FIXING LOCALES FOR BUILD ***"
sudo sed -i "s/^# en_US.UTF-8 UTF-8.*/en_US.UTF-8 UTF-8/g" /etc/locale.gen
sudo sed -i "s/^# en_US ISO-8859-1.*/en_US ISO-8859-1/g" /etc/locale.gen
sudo locale-gen
export LANGUAGE = en_GB.UTF-8
export LANG = en_GB.UTF-8
export LC_ALL = en_GB.UTF-8
fi
2018-12-01 22:33:18 +01:00
2018-10-13 22:43:07 +02:00
# update debian
echo ""
echo "*** UPDATE DEBIAN ***"
sudo apt-get update
sudo apt-get upgrade -f -y --allow-change-held-packages
2019-04-14 12:08:18 +02:00
echo ""
echo " *** PREPARE ${ baseImage } *** "
2018-10-13 22:43:07 +02:00
# special prepare when DietPi
if [ " ${ baseImage } " = "dietpi" ] ; then
2019-01-28 20:37:31 +01:00
echo "renaming dietpi user to pi"
sudo usermod -l pi dietpi
2018-10-13 22:43:07 +02:00
fi
# special prepare when Raspbian
if [ " ${ baseImage } " = "raspbian" ] ; then
# do memory split (16MB)
sudo raspi-config nonint do_memory_split 16
# set to wait until network is available on boot (0 seems to yes)
sudo raspi-config nonint do_boot_wait 0
2018-10-19 15:35:38 +02:00
# set WIFI country so boot does not block
sudo raspi-config nonint do_wifi_country US
2019-03-14 13:14:04 +01:00
# see https://github.com/rootzoll/raspiblitz/issues/428#issuecomment-472822840
echo "max_usb_current=1" | sudo tee -a /boot/config.txt
2018-10-13 22:43:07 +02:00
# extra: remove some big packages not needed
2018-11-11 12:53:50 +01:00
sudo apt-get remove -y --purge libreoffice* oracle-java* chromium-browser nuscratch scratch sonic-pi minecraft-pi python-pygame
2018-10-13 22:43:07 +02:00
sudo apt-get clean
sudo apt-get -y autoremove
fi
2019-04-14 12:08:18 +02:00
# special prepare when Ubuntu or Armbian
if [ " ${ baseImage } " = "ubuntu" ] || [ " ${ baseImage } " = "armbian" ] ; then
# make user pi and add to sudo
sudo adduser --disabled-password --gecos "" pi
sudo adduser pi sudo
fi
2018-10-13 22:43:07 +02:00
echo ""
echo "*** CONFIG ***"
2018-08-06 01:03:17 +02:00
# based on https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_20_pi.md#raspi-config
2018-10-13 22:43:07 +02:00
# set new default passwort for root user
2018-08-06 01:03:17 +02:00
echo "root:raspiblitz" | sudo chpasswd
echo "pi:raspiblitz" | sudo chpasswd
2019-03-18 11:20:33 +01:00
if [ " ${ baseImage } " = "raspbian" ] ; then
# set Raspi to boot up automatically with user pi (for the LCD)
# https://www.raspberrypi.org/forums/viewtopic.php?t=21632
sudo raspi-config nonint do_boot_behaviour B2
sudo bash -c "echo '[Service]' >> /etc/systemd/system/getty@tty1.service.d/autologin.conf"
sudo bash -c "echo 'ExecStart=' >> /etc/systemd/system/getty@tty1.service.d/autologin.conf"
sudo bash -c "echo 'ExecStart=-/sbin/agetty --autologin pi --noclear %I 38400 linux' >> /etc/systemd/system/getty@tty1.service.d/autologin.conf"
fi
if [ " ${ baseImage } " = "dietpi" ] ; then
2019-03-24 23:07:32 +01:00
# set DietPi to boot up automatically with user pi (for the LCD)
# requires AUTO_SETUP_AUTOSTART_TARGET_INDEX=7 in the dietpi.txt
# /DietPi/dietpi/dietpi-autostart overwrites /etc/systemd/system/getty@tty1.service.d/dietpi-autologin.conf on reboot
sudo sed -i 's/agetty --autologin root %I $TERM/agetty --autologin pi --noclear %I 38400 linux/' /DietPi/dietpi/dietpi-autostart
2019-03-18 11:20:33 +01:00
fi
2018-08-06 01:03:17 +02:00
2019-04-14 12:08:18 +02:00
if [ " ${ baseImage } " = "ubuntu" ] || [ " ${ baseImage } " = "armbian" ] ; then
sudo bash -c "echo '[Service]' >> /lib/systemd/system/getty@.service"
sudo bash -c "echo 'ExecStart=' >> /lib/systemd/system/getty@.service"
sudo bash -c "echo 'ExecStart=-/sbin/agetty --autologin pi --noclear %I 38400 linux' >> /lib/systemd/system/getty@.service"
fi
2019-03-13 17:00:44 +01:00
# change log rotates
# see https://github.com/rootzoll/raspiblitz/issues/394#issuecomment-471535483
2019-03-25 23:17:14 +01:00
echo "/var/log/syslog" >> ./rsyslog
echo "{" >> ./rsyslog
echo " rotate 7" >> ./rsyslog
echo " daily" >> ./rsyslog
echo " missingok" >> ./rsyslog
echo " notifempty" >> ./rsyslog
echo " delaycompress" >> ./rsyslog
echo " compress" >> ./rsyslog
echo " postrotate" >> ./rsyslog
echo " invoke-rc.d rsyslog rotate > /dev/null" >> ./rsyslog
echo " endscript" >> ./rsyslog
echo "}" >> ./rsyslog
echo "" >> ./rsyslog
echo "/var/log/mail.info" >> ./rsyslog
echo "/var/log/mail.warn" >> ./rsyslog
echo "/var/log/mail.err" >> ./rsyslog
echo "/var/log/mail.log" >> ./rsyslog
echo "/var/log/daemon.log" >> ./rsyslog
echo "{" >> ./rsyslog
echo " rotate 4" >> ./rsyslog
echo " size=100M" >> ./rsyslog
echo " missingok" >> ./rsyslog
echo " notifempty" >> ./rsyslog
echo " compress" >> ./rsyslog
echo " delaycompress" >> ./rsyslog
echo " sharedscripts" >> ./rsyslog
echo " postrotate" >> ./rsyslog
echo " invoke-rc.d rsyslog rotate > /dev/null" >> ./rsyslog
echo " endscript" >> ./rsyslog
echo "}" >> ./rsyslog
echo "" >> ./rsyslog
echo "/var/log/kern.log" >> ./rsyslog
echo "/var/log/auth.log" >> ./rsyslog
2019-03-13 17:00:44 +01:00
echo "{" >> ./rsyslog
echo " rotate 4" >> ./rsyslog
echo " size=100M" >> ./rsyslog
echo " missingok" >> ./rsyslog
echo " notifempty" >> ./rsyslog
echo " compress" >> ./rsyslog
echo " delaycompress" >> ./rsyslog
echo " sharedscripts" >> ./rsyslog
echo " postrotate" >> ./rsyslog
echo " invoke-rc.d rsyslog rotate > /dev/null" >> ./rsyslog
echo " endscript" >> ./rsyslog
echo "}" >> ./rsyslog
echo "" >> ./rsyslog
2019-03-25 23:17:14 +01:00
echo "/var/log/user.log" >> ./rsyslog
echo "/var/log/lpr.log" >> ./rsyslog
echo "/var/log/cron.log" >> ./rsyslog
echo "/var/log/debug" >> ./rsyslog
echo "/var/log/messages" >> ./rsyslog
echo "{" >> ./rsyslog
echo " rotate 4" >> ./rsyslog
echo " weekly" >> ./rsyslog
echo " missingok" >> ./rsyslog
echo " notifempty" >> ./rsyslog
echo " compress" >> ./rsyslog
echo " delaycompress" >> ./rsyslog
echo " sharedscripts" >> ./rsyslog
echo " postrotate" >> ./rsyslog
echo " invoke-rc.d rsyslog rotate > /dev/null" >> ./rsyslog
echo " endscript" >> ./rsyslog
echo "}" >> ./rsyslog
2019-03-13 17:00:44 +01:00
sudo mv ./rsyslog /etc/logrotate.d/rsyslog
sudo chown root:root /etc/logrotate.d/rsyslog
sudo service rsyslog restart
2018-08-06 11:46:22 +02:00
echo ""
echo "*** SOFTWARE UPDATE ***"
2018-08-06 01:03:17 +02:00
# based on https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_20_pi.md#software-update
# installs like on RaspiBolt
sudo apt-get install -y htop git curl bash-completion jq dphys-swapfile
2019-01-15 15:54:20 +01:00
# installs bandwidth monitoring for future statistics
sudo apt-get install -y vnstat
2019-03-25 23:17:14 +01:00
# prepare for BTRFS data drive raid
sudo apt-get install -y btrfs-tools
2019-04-02 03:54:30 +02:00
# prepare for ssh reverse tunneling
sudo apt-get install -y autossh
2019-03-25 23:17:14 +01:00
2019-03-14 13:03:11 +01:00
# prepare for display graphics mode
# see https://github.com/rootzoll/raspiblitz/pull/334
2019-03-14 12:39:16 +01:00
sudo apt-get install -y fbi
2019-04-10 01:56:48 +02:00
# prepare for powertest
sudo apt install -y sysbench
2019-03-14 13:03:11 +01:00
# prepare dor display service
# see https://github.com/rootzoll/raspiblitz/issues/88#issuecomment-471342311
sudo apt-get install -y redis-server
sudo -H pip3 install redis
2019-04-14 12:08:18 +02:00
# check for dependencies on DietPi, Ubuntu, Armbian
sudo apt-get install -y build-essential
sudo apt-get install -y python-pip
# rsync is needed to copy from HDD
sudo apt install -y rsync
# install ifconfig
sudo apt install -y net-tools
#to display hex codes
sudo apt install -y xxd
# setuptools needed for Nyx
sudo pip install setuptools
# netcat for 00infoBlitz.sh
sudo apt install -y netcat
# install OpenSSH client + server
sudo apt install -y openssh-client
sudo apt install -y openssh-sftp-server
# install killall, fuser
sudo apt-get install -y psmisc
sudo apt-get clean
sudo apt-get -y autoremove
2018-08-06 11:46:22 +02:00
echo ""
echo "*** ADDING MAIN USER admin ***"
2018-08-06 01:03:17 +02:00
# based on https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_20_pi.md#adding-main-user-admin
# using the default password 'raspiblitz'
sudo adduser --disabled-password --gecos "" admin
echo "admin:raspiblitz" | sudo chpasswd
sudo adduser admin sudo
sudo chsh admin -s /bin/bash
# configure sudo for usage without password entry
2018-08-06 21:33:16 +02:00
echo '%sudo ALL=(ALL) NOPASSWD:ALL' | sudo EDITOR = 'tee -a' visudo
2018-08-06 01:03:17 +02:00
2019-04-14 12:08:18 +02:00
echo ""
2018-08-06 11:46:22 +02:00
echo "*** ADDING SERVICE USER bitcoin"
2018-08-06 01:03:17 +02:00
# based on https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_20_pi.md#adding-the-service-user-bitcoin
# create user and set default password for user
sudo adduser --disabled-password --gecos "" bitcoin
echo "bitcoin:raspiblitz" | sudo chpasswd
2018-08-06 11:46:22 +02:00
echo ""
echo "*** SWAP FILE ***"
2018-08-06 01:03:17 +02:00
# based on https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_20_pi.md#moving-the-swap-file
# but just deactivating and deleting old (will be created alter when user adds HDD)
sudo dphys-swapfile swapoff
sudo dphys-swapfile uninstall
2018-08-06 11:46:22 +02:00
echo ""
echo "*** INCREASE OPEN FILE LIMIT ***"
2018-08-06 01:03:17 +02:00
# based on https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_20_pi.md#increase-your-open-files-limit
sudo sed --in-place -i "56s/.*/* soft nofile 128000/" /etc/security/limits.conf
sudo bash -c "echo '* hard nofile 128000' >> /etc/security/limits.conf"
sudo bash -c "echo 'root soft nofile 128000' >> /etc/security/limits.conf"
sudo bash -c "echo 'root hard nofile 128000' >> /etc/security/limits.conf"
sudo bash -c "echo '# End of file' >> /etc/security/limits.conf"
sudo sed --in-place -i "23s/.*/session required pam_limits.so/" /etc/pam.d/common-session
sudo sed --in-place -i "25s/.*/session required pam_limits.so/" /etc/pam.d/common-session-noninteractive
sudo bash -c "echo '# end of pam-auth-update config' >> /etc/pam.d/common-session-noninteractive"
2019-05-07 02:42:51 +02:00
# "*** BITCOIN ***"
2018-08-06 01:03:17 +02:00
# based on https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_30_bitcoin.md#installation
# set version (change if update is available)
2019-04-09 18:09:22 +02:00
bitcoinVersion = "0.17.1"
2018-11-18 19:35:39 +01:00
2019-04-14 12:08:18 +02:00
# set OS version
if [ ${ isARM } -eq 1 ] ; then
2019-04-14 22:42:23 +02:00
bitcoinOSversion = "arm-linux-gnueabihf"
2019-04-14 12:08:18 +02:00
# needed to make sure download is not changed
# calulate with sha256sum and also check with SHA256SUMS.asc
bitcoinSHA256 = "aab3c1fb92e47734fadded1d3f9ccf0ac5a59e3cdc28c43a52fcab9f0cb395bc"
fi
if [ ${ isAARCH64 } -eq 1 ] ; then
2019-04-14 22:42:23 +02:00
bitcoinOSversion = "aarch64-linux-gnu"
2019-04-14 12:08:18 +02:00
bitcoinSHA256 = "5659c436ca92eed8ef42d5b2d162ff6283feba220748f9a373a5a53968975e34"
fi
2019-05-07 02:42:51 +02:00
if [ ${ isX86_64 } -eq 1 ] ; then
bitcoinOSversion = "x86_64-linux-gnu"
bitcoinSHA256 = "53ffca45809127c9ba33ce0080558634101ec49de5224b2998c489b6d0fc2b17"
fi
echo ""
echo " *** BITCOIN v ${ bitcoinVersion } for ${ bitcoinOSversion } *** "
2018-11-18 19:35:39 +01:00
# needed to check code signing
2018-08-06 01:03:17 +02:00
laanwjPGP = "01EA5486DE18A882D4C2684590C8019E36C2E964"
# prepare directories
2019-03-25 09:52:59 +01:00
sudo rm -r /home/admin/download
2018-08-06 01:03:17 +02:00
sudo -u admin mkdir /home/admin/download
cd /home/admin/download
# download resources
2019-04-14 22:42:23 +02:00
binaryName = " bitcoin- ${ bitcoinVersion } - ${ bitcoinOSversion } .tar.gz "
2018-11-18 19:35:39 +01:00
sudo -u admin wget https://bitcoin.org/bin/bitcoin-core-${ bitcoinVersion } /${ binaryName }
if [ ! -f " ./ ${ binaryName } " ]
2018-08-27 23:26:44 +02:00
then
echo "!!! FAIL !!! Download BITCOIN BINARY not success."
exit 1
fi
2018-11-18 19:35:39 +01:00
# check binary is was not manipulated (checksum test)
binaryChecksum = $( sha256sum ${ binaryName } | cut -d " " -f1)
if [ " ${ binaryChecksum } " != " ${ bitcoinSHA256 } " ] ; then
2018-12-24 15:26:30 +01:00
echo " !!! FAIL !!! Downloaded BITCOIN BINARY not matching SHA256 checksum: ${ bitcoinSHA256 } "
exit 1
2018-08-27 23:26:44 +02:00
fi
2018-11-18 19:35:39 +01:00
2018-11-18 20:01:43 +01:00
# check gpg finger print
2018-08-06 01:03:17 +02:00
sudo -u admin wget https://bitcoin.org/laanwj-releases.asc
2018-08-27 23:26:44 +02:00
if [ ! -f "./laanwj-releases.asc" ]
then
2018-12-24 15:26:30 +01:00
echo "!!! FAIL !!! Download laanwj-releases.asc not success."
exit 1
2018-08-27 23:26:44 +02:00
fi
2019-02-22 23:22:03 +01:00
gpg ./laanwj-releases.asc
2018-08-06 01:03:17 +02:00
fingerprint = $( gpg ./laanwj-releases.asc 2>/dev/null | grep " ${ laanwjPGP } " -c)
if [ ${ fingerprint } -lt 1 ] ; then
echo ""
2019-02-22 22:46:13 +01:00
echo "!!! BUILD WARNING --> Bitcoin PGP author not as expected"
2019-02-22 23:22:03 +01:00
echo " Should contain laanwjPGP: ${ laanwjPGP } "
2019-02-22 22:46:13 +01:00
echo "PRESS ENTER to TAKE THE RISK if you think all is OK"
read key
2018-08-06 01:03:17 +02:00
fi
gpg --import ./laanwj-releases.asc
2018-11-18 20:30:59 +01:00
sudo -u admin wget https://bitcoin.org/bin/bitcoin-core-${ bitcoinVersion } /SHA256SUMS.asc
2018-08-06 01:03:17 +02:00
verifyResult = $( gpg --verify SHA256SUMS.asc 2>& 1)
goodSignature = $( echo ${ verifyResult } | grep 'Good signature' -c)
echo " goodSignature( ${ goodSignature } ) "
correctKey = $( echo ${ verifyResult } | grep " using RSA key ${ laanwjPGP : -16 } " -c)
echo " correctKey( ${ correctKey } ) "
if [ ${ correctKey } -lt 1 ] || [ ${ goodSignature } -lt 1 ] ; then
echo ""
echo " !!! BUILD FAILED --> LND PGP Verify not OK / signatute( ${ goodSignature } ) verify( ${ correctKey } ) "
exit 1
fi
2018-11-18 21:45:13 +01:00
# correct versions for install if needed
2019-04-09 18:09:22 +02:00
# just if an small update shows a different formatted version number
2018-11-18 23:44:30 +01:00
if [ " ${ bitcoinVersion } " = "0.17.0.1" ] ; then
2018-11-18 21:45:13 +01:00
bitcoinVersion = "0.17.0"
2019-04-09 18:09:22 +02:00
fi
2018-11-18 21:45:13 +01:00
2018-08-06 01:03:17 +02:00
# install
2018-11-18 20:01:43 +01:00
sudo -u admin tar -xvf ${ binaryName }
2018-11-18 23:44:30 +01:00
sudo install -m 0755 -o root -g root -t /usr/local/bin/ bitcoin-${ bitcoinVersion } /bin/*
2018-08-06 01:03:17 +02:00
sleep 3
2018-08-06 11:46:22 +02:00
installed = $( sudo -u admin bitcoind --version | grep " ${ bitcoinVersion } " -c)
2018-08-06 01:03:17 +02:00
if [ ${ installed } -lt 1 ] ; then
echo ""
echo " !!! BUILD FAILED --> Was not able to install bitcoind version( ${ bitcoinVersion } ) "
exit 1
fi
2019-05-07 16:51:09 +02:00
if [ " ${ baseImage } " = "raspbian" ] ; then
2018-08-06 01:03:17 +02:00
echo ""
2019-05-07 16:51:09 +02:00
echo "*** LITECOIN ***"
# based on https://medium.com/@jason.hcwong/litecoin-lightning-with-raspberry-pi-3-c3b931a82347
# set version (change if update is available)
litecoinVersion = "0.16.3"
litecoinSHA256 = "fc6897265594985c1d09978b377d51a01cc13ee144820ddc59fbb7078f122f99"
cd /home/admin/download
# download
binaryName = " litecoin- ${ litecoinVersion } -arm-linux-gnueabihf.tar.gz "
sudo -u admin wget https://download.litecoin.org/litecoin-${ litecoinVersion } /linux/${ binaryName }
# check download
binaryChecksum = $( sha256sum ${ binaryName } | cut -d " " -f1)
if [ " ${ binaryChecksum } " != " ${ litecoinSHA256 } " ] ; then
echo " !!! FAIL !!! Downloaded LITECOIN BINARY not matching SHA256 checksum: ${ litecoinSHA256 } "
exit 1
fi
# install
sudo -u admin tar -xvf ${ binaryName }
sudo install -m 0755 -o root -g root -t /usr/local/bin litecoin-${ litecoinVersion } /bin/*
installed = $( sudo -u admin litecoind --version | grep " ${ litecoinVersion } " -c)
if [ ${ installed } -lt 1 ] ; then
echo ""
echo " !!! BUILD FAILED --> Was not able to install litecoind version( ${ litecoinVersion } ) "
exit 1
fi
2018-08-06 01:03:17 +02:00
fi
2019-05-07 02:42:51 +02:00
# "*** LND ***"
2018-08-28 13:18:44 +02:00
## based on https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_40_lnd.md#lightning-lnd
2019-04-11 22:03:08 +02:00
## see LND releases: https://github.com/lightningnetwork/lnd/releases
2019-04-17 02:39:33 +02:00
lndVersion = "0.6-beta"
2019-04-14 12:08:18 +02:00
if [ ${ isARM } -eq 1 ] ; then
lndOSversion = "armv7"
2019-04-17 04:39:08 +02:00
lndSHA256 = "effea372c207293fd42b0cc27800da3a70c22f8c9a0e7b5eb8dbe56b5b98e1a3"
2019-04-14 12:08:18 +02:00
fi
if [ ${ isAARCH64 } -eq 1 ] ; then
lndOSversion = "arm64"
2019-04-17 04:39:08 +02:00
lndSHA256 = "2f31b13a4da6217ed7e27a44e1705103d7ed846aa2f599b7e5de0e6033a66c19"
fi
2019-05-07 02:42:51 +02:00
if [ ${ isX86_64 } -eq 1 ] ; then
lndOSversion = "amd64"
lndSHA256 = "ef37b3658fd864dfb3af6af29404d92337229378c24bfb78aa2010ede4cd06af"
fi
echo ""
2019-05-07 14:00:40 +02:00
echo " *** LND v ${ lndVersion } for ${ lndOSversion } *** "
2019-04-09 14:53:42 +02:00
# olaoluwa
2019-04-13 00:22:16 +02:00
PGPpkeys = "https://keybase.io/roasbeef/pgp_keys.asc"
2019-04-13 01:12:57 +02:00
PGPcheck = "BD599672C804AF2770869A048B80CD2BB8BD8132"
2019-04-09 14:53:42 +02:00
# bitconner
2019-04-13 00:22:16 +02:00
#PGPpkeys="https://keybase.io/bitconner/pgp_keys.asc"
#PGPcheck="9C8D61868A7C492003B2744EE7D737B67FA592C7"
2018-11-18 23:44:30 +01:00
2018-08-28 10:37:26 +02:00
# get LND resources
2019-01-27 00:21:26 +01:00
cd /home/admin/download
2019-04-14 12:08:18 +02:00
binaryName = " lnd-linux- ${ lndOSversion } -v ${ lndVersion } .tar.gz "
2018-11-18 23:44:30 +01:00
sudo -u admin wget https://github.com/lightningnetwork/lnd/releases/download/v${ lndVersion } /${ binaryName }
sudo -u admin wget https://github.com/lightningnetwork/lnd/releases/download/v${ lndVersion } /manifest-v${ lndVersion } .txt
sudo -u admin wget https://github.com/lightningnetwork/lnd/releases/download/v${ lndVersion } /manifest-v${ lndVersion } .txt.sig
2019-04-09 16:52:02 +02:00
sudo -u admin wget -O /home/admin/download/pgp_keys.asc ${ PGPpkeys }
2018-08-28 13:18:44 +02:00
2018-11-18 23:44:30 +01:00
# check binary is was not manipulated (checksum test)
2019-01-27 00:21:26 +01:00
binaryChecksum = $( sha256sum ${ binaryName } | cut -d " " -f1)
2018-11-18 23:44:30 +01:00
if [ " ${ binaryChecksum } " != " ${ lndSHA256 } " ] ; then
2018-12-24 15:26:30 +01:00
echo " !!! FAIL !!! Downloaded LND BINARY not matching SHA256 checksum: ${ lndSHA256 } "
exit 1
2018-08-28 13:18:44 +02:00
fi
2018-11-18 23:44:30 +01:00
# check gpg finger print
2019-02-22 23:22:03 +01:00
gpg ./pgp_keys.asc
2019-04-14 12:08:18 +02:00
fingerprint = $( sudo gpg /home/admin/download/pgp_keys.asc 2>/dev/null | grep " ${ PGPcheck } " -c)
2018-11-18 23:44:30 +01:00
if [ ${ fingerprint } -lt 1 ] ; then
echo ""
2019-04-09 14:53:42 +02:00
echo "!!! BUILD WARNING --> LND PGP author not as expected"
echo " Should contain PGP: ${ PGPcheck } "
2019-02-22 23:22:03 +01:00
echo "PRESS ENTER to TAKE THE RISK if you think all is OK"
read key
2018-08-28 13:18:44 +02:00
fi
2018-11-18 23:44:30 +01:00
gpg --import ./pgp_keys.asc
sleep 3
verifyResult = $( gpg --verify manifest-v${ lndVersion } .txt.sig 2>& 1)
goodSignature = $( echo ${ verifyResult } | grep 'Good signature' -c)
echo " goodSignature( ${ goodSignature } ) "
correctKey = $( echo ${ verifyResult } | tr -d " \t\n\r" | grep " ${ olaoluwaPGP } " -c)
echo " correctKey( ${ correctKey } ) "
if [ ${ correctKey } -lt 1 ] || [ ${ goodSignature } -lt 1 ] ; then
echo ""
echo " !!! BUILD FAILED --> LND PGP Verify not OK / signatute( ${ goodSignature } ) verify( ${ correctKey } ) "
2018-12-24 15:26:30 +01:00
exit 1
2018-11-18 23:44:30 +01:00
fi
# install
sudo -u admin tar -xzf ${ binaryName }
2019-04-14 12:08:18 +02:00
sudo install -m 0755 -o root -g root -t /usr/local/bin lnd-linux-${ lndOSversion } -v${ lndVersion } /*
2018-11-18 23:44:30 +01:00
sleep 3
installed = $( sudo -u admin lnd --version)
if [ ${# installed } -eq 0 ] ; then
echo ""
echo "!!! BUILD FAILED --> Was not able to install LND"
exit 1
fi
2019-04-12 12:48:51 +02:00
# prepare python for lnd api use
# https://dev.lightning.community/guides/python-grpc/
#
echo ""
echo "*** LND API for Python ***"
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 2
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.5 1
echo "to switch between python2/3: sudo update-alternatives --config python"
sudo apt-get -f -y install virtualenv
2019-05-01 00:35:09 +02:00
sudo -u admin bash -c "cd; virtualenv python-env-lnd; source /home/admin/python-env-lnd/bin/activate; pip install grpcio grpcio-tools googleapis-common-protos pathlib2"
2019-04-12 12:48:51 +02:00
echo ""
2019-05-07 02:42:51 +02:00
# "*** Installing Go ***"
2018-12-21 03:03:06 +01:00
# Go is needed for ZAP connect later
2019-05-07 02:42:51 +02:00
goVersion = "1.12.4"
if [ ${ isARM } -eq 1 ] || [ ${ isAARCH64 } -eq 1 ] ; then
goOSversion = "armv6l"
fi
if [ ${ isX86_64 } -eq 1 ] ; then
goOSversion = "amd64"
fi
echo " *** Installing Go v ${ goVersion } for ${ goOSversion } *** "
# wget https://storage.googleapis.com/golang/go${goVersion}.linux-${goOSversion}.tar.gz
wget https://dl.google.com/go/go${ goVersion } .linux-${ goOSversion } .tar.gz
if [ ! -f " ./go ${ goVersion } .linux- ${ goOSversion } .tar.gz " ]
2018-12-21 03:03:06 +01:00
then
echo "!!! FAIL !!! Download not success."
exit 1
fi
2019-05-07 02:42:51 +02:00
sudo tar -C /usr/local -xzf go${ goVersion } .linux-${ goOSversion } .tar.gz
2018-12-21 03:03:06 +01:00
sudo rm *.gz
sudo mkdir /usr/local/gocode
sudo chmod 777 /usr/local/gocode
export GOROOT = /usr/local/go
export PATH = $PATH :$GOROOT /bin
export GOPATH = /usr/local/gocode
export PATH = $PATH :$GOPATH /bin
echo ""
2018-11-18 23:44:30 +01:00
##### Build from Source
## To quickly catch up get latest patches if needed
#repo="github.com/lightningnetwork/lnd"
#commit="3f57f65bf0cb710159b0182391d1d75e9e3005bc"
## BUILDING LND FROM SOURCE
#echo "*** Installing Go ***"
#wget https://storage.googleapis.com/golang/go1.11.linux-armv6l.tar.gz
#if [ ! -f "./go1.11.linux-armv6l.tar.gz" ]
#then
# echo "!!! FAIL !!! Download not success."
# exit 1
#fi
#sudo tar -C /usr/local -xzf go1.11.linux-armv6l.tar.gz
#sudo rm *.gz
#sudo mkdir /usr/local/gocode
#sudo chmod 777 /usr/local/gocode
#export GOROOT=/usr/local/go
#export PATH=$PATH:$GOROOT/bin
#export GOPATH=/usr/local/gocode
#export PATH=$PATH:$GOPATH/bin
#echo ""
#echo "*** Build LND from Source ***"
#go get -d $repo
## make sure to always have the same code (commit) to build
## TODO: To update lnd -> change to latest commit
#cd $GOPATH/src/$repo
#sudo git checkout $commit
#make && make install
#sudo chmod 555 /usr/local/gocode/bin/lncli
#sudo chmod 555 /usr/local/gocode/bin/lnd
#sudo bash -c "echo 'export PATH=$PATH:/usr/local/gocode/bin/' >> /home/admin/.bashrc"
#sudo bash -c "echo 'export PATH=$PATH:/usr/local/gocode/bin/' >> /home/pi/.bashrc"
#sudo bash -c "echo 'export PATH=$PATH:/usr/local/gocode/bin/' >> /home/bitcoin/.bashrc"
#lndVersionCheck=$(lncli --version)
#echo "LND VERSION: ${lndVersionCheck}"
#if [ ${#lndVersionCheck} -eq 0 ]; then
# echo "FAIL - Something went wrong with building LND from source."
# echo "Sometimes it may just be a connection issue. Reset to fresh Rasbian and try again?"
# exit 1
#fi
#echo ""
#echo "** Link to /usr/local/bin ***"
#sudo ln -s /usr/local/gocode/bin/lncli /usr/local/bin/lncli
#sudo ln -s /usr/local/gocode/bin/lnd /usr/local/bin/lnd
2018-08-06 01:03:17 +02:00
2018-08-06 11:46:22 +02:00
echo ""
echo "*** RASPIBLITZ EXTRAS ***"
2018-08-06 01:03:17 +02:00
# for setup schell scripts
sudo apt-get -y install dialog bc
# enable copy of blockchain from 2nd HDD formatted with exFAT
sudo apt-get -y install exfat-fuse
# for blockchain torrent download
sudo apt-get -y install transmission-cli
2018-11-18 18:02:35 +01:00
sudo apt-get -y install rtorrent
2019-04-14 21:17:51 +02:00
sudo apt-get -y install cpulimit
2018-08-06 01:03:17 +02:00
# for background downloading
sudo apt-get -y install screen
# optimization for torrent download
sudo bash -c "echo 'net.core.rmem_max = 4194304' >> /etc/sysctl.conf"
sudo bash -c "echo 'net.core.wmem_max = 1048576' >> /etc/sysctl.conf"
# *** SHELL SCRIPTS AND ASSETS
# move files from gitclone
cd /home/admin/
2018-12-22 13:57:49 +01:00
sudo -u admin git clone -b ${ wantedBranch } https://github.com/${ githubUser } /raspiblitz.git
2018-09-21 21:33:13 +02:00
sudo -u admin cp /home/admin/raspiblitz/home.admin/*.* /home/admin
2018-08-06 01:03:17 +02:00
sudo -u admin chmod +x *.sh
sudo -u admin cp -r /home/admin/raspiblitz/home.admin/assets /home/admin/
2018-12-02 20:57:27 +01:00
sudo -u admin cp -r /home/admin/raspiblitz/home.admin/config.scripts /home/admin/
sudo -u admin chmod +x /home/admin/config.scripts/*.sh
2018-08-06 01:03:17 +02:00
2019-01-30 13:16:25 +01:00
# add /sbin to path for all
sudo bash -c "echo 'PATH=\$PATH:/sbin' >> /etc/profile"
2019-01-17 22:40:26 +01:00
2019-01-29 13:24:37 +01:00
# profile path for admin
2019-01-17 22:40:26 +01:00
sudo bash -c "echo '' >> /home/admin/.profile"
sudo bash -c "echo 'GOROOT=/usr/local/go' >> /home/admin/.profile"
2019-02-06 12:06:50 +01:00
sudo bash -c "echo 'PATH=\$PATH:\$GOROOT/bin' >> /home/admin/.profile"
2019-01-17 22:40:26 +01:00
sudo bash -c "echo 'GOPATH=/usr/local/gocode' >> /home/admin/.profile"
2019-02-06 12:06:50 +01:00
sudo bash -c "echo 'PATH=\$PATH:\$GOPATH/bin' >> /home/admin/.profile"
2019-01-17 22:40:26 +01:00
2019-01-29 13:24:37 +01:00
# bash autostart for admin
2018-12-24 01:03:02 +01:00
sudo bash -c "echo '# shortcut commands' >> /home/admin/.bashrc"
sudo bash -c "echo 'source /home/admin/_commands.sh' >> /home/admin/.bashrc"
2018-08-06 01:03:17 +02:00
sudo bash -c "echo '# automatically start main menu for admin' >> /home/admin/.bashrc"
2019-04-16 19:55:25 +02:00
sudo bash -c "echo './00raspiblitz.sh' >> /home/admin/.bashrc"
2018-08-28 00:04:41 +02:00
2019-04-14 12:08:18 +02:00
if [ " ${ baseImage } " = "raspbian" ] || [ " ${ baseImage } " = "armbian" ] || [ " ${ baseImage } " = "ubuntu" ] ; then
2019-03-18 11:20:33 +01:00
# bash autostart for pi
# run as exec to dont allow easy physical access by keyboard
# see https://github.com/rootzoll/raspiblitz/issues/54
sudo bash -c 'echo "# automatic start the LCD info loop" >> /home/pi/.bashrc'
sudo bash -c 'echo "SCRIPT=/home/admin/00infoLCD.sh" >> /home/pi/.bashrc'
sudo bash -c 'echo "# replace shell with script => logout when exiting script" >> /home/pi/.bashrc'
sudo bash -c 'echo "exec \$SCRIPT" >> /home/pi/.bashrc'
2019-04-14 12:08:18 +02:00
fi
if [ " ${ baseImage } " = "raspbian" ] ; then
2019-03-31 13:58:10 +02:00
# create /home/admin/setup.sh - which will get executed after reboot by autologin pi user
cat > /home/admin/setup.sh <<EOF
# make LCD screen rotation correct
sudo sed --in-place -i "57s/.*/dtoverlay=tft35a:rotate=270/" /boot/config.txt
EOF
sudo chmod +x /home/admin/setup.sh
2019-03-18 11:20:33 +01:00
fi
if [ " ${ baseImage } " = "dietpi" ] ; then
# bash autostart for dietpi
sudo bash -c 'echo "# automatic start the LCD info loop" >> /home/dietpi/.bashrc'
sudo bash -c 'echo "SCRIPT=/home/admin/00infoLCD.sh" >> /home/dietpi/.bashrc'
sudo bash -c 'echo "# replace shell with script => logout when exiting script" >> /home/dietpi/.bashrc'
sudo bash -c 'echo "exec \$SCRIPT" >> /home/dietpi/.bashrc'
fi
2019-01-27 14:25:30 +01:00
2018-10-13 23:15:17 +02:00
echo ""
echo "*** HARDENING ***"
# based on https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_20_pi.md#hardening-your-pi
# fail2ban (no config required)
sudo apt-get install -y fail2ban
2018-10-15 14:43:09 +02:00
# *** BOOTSTRAP ***
# see background README for details
echo ""
echo "*** RASPI BOOSTRAP SERVICE ***"
sudo chmod +x /home/admin/_bootstrap.sh
sudo cp ./assets/bootstrap.service /etc/systemd/system/bootstrap.service
sudo systemctl enable bootstrap
2019-02-13 03:30:49 +01:00
# *** BACKGROUND ***
echo ""
echo "*** RASPI BACKGROUND SERVICE ***"
sudo chmod +x /home/admin/_background.sh
sudo cp ./assets/background.service /etc/systemd/system/background.service
sudo systemctl enable background
2019-02-09 15:58:11 +01:00
# *** TOR Prepare ***
echo "*** Prepare TOR source+keys ***"
sudo /home/admin/config.scripts/internet.tor.sh prepare
2019-02-09 17:02:20 +01:00
echo ""
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
2019-02-09 15:58:11 +01:00
echo "If you see fails above .. please run again later on:"
echo "sudo /home/admin/config.scripts/internet.tor.sh prepare"
2018-12-11 13:33:22 +01:00
echo ""
2018-08-06 01:03:17 +02:00
# *** RASPIBLITZ IMAGE READY ***
echo ""
echo "**********************************************"
echo "ALMOST READY"
echo "**********************************************"
echo ""
echo "Your SD Card Image for RaspiBlitz is almost ready."
echo "Last step is to install LCD drivers. This will reboot your Pi when done."
echo ""
echo "Maybe take the chance and look thru the output above if you can spot any errror."
echo ""
2018-08-06 21:20:47 +02:00
echo "After final reboot - your SD Card Image is ready."
2019-01-15 02:37:14 +01:00
echo ""
echo "IMPORTANT IF WANT TO MAKE A RELEASE IMAGE FROM THIS BUILD:"
echo "login once after reboot without HDD and run 'XXprepareRelease.sh'"
echo ""
2019-04-14 12:08:18 +02:00
echo "to continue: reboot with \`sudo shutdown -r now\` and login with user:admin password:raspiblitz"
echo ""
2018-08-06 01:03:17 +02:00
2019-03-20 13:22:32 +01:00
# install default LCD on DietPi without reboot to allow automatic build
if [ " ${ baseImage } " = "dietpi" ] ; then
echo "Installing the default display available from Amazon"
# based on https://www.elegoo.com/tutorial/Elegoo%203.5%20inch%20Touch%20Screen%20User%20Manual%20V1.00.2017.10.09.zip
cd /home/admin/
# sudo apt-mark hold raspberrypi-bootloader
git clone https://github.com/goodtft/LCD-show.git
sudo chmod -R 755 LCD-show
sudo chown -R admin:admin LCD-show
cd LCD-show/
# sudo ./LCD35-show
sudo rm -rf /etc/X11/xorg.conf.d/40-libinput.conf
sudo mkdir /etc/X11/xorg.conf.d
sudo cp ./usr/tft35a-overlay.dtb /boot/overlays/
sudo cp ./usr/tft35a-overlay.dtb /boot/overlays/tft35a.dtbo
sudo cp -rf ./usr/99-calibration.conf-35 /etc/X11/xorg.conf.d/99-calibration.conf
sudo cp -rf ./usr/99-fbturbo.conf /usr/share/X11/xorg.conf.d/
2019-03-21 14:36:10 +01:00
sudo cp ./usr/cmdline.txt /DietPi/
2019-03-20 13:22:32 +01:00
sudo cp ./usr/inittab /etc/
sudo cp ./boot/config-35.txt /DietPi/config.txt
2019-03-31 13:58:10 +02:00
# make LCD screen rotation correct
sudo sed -i "s/dtoverlay=tft35a/dtoverlay=tft35a:rotate=270/" /DietPi/config.txt
2019-03-20 13:22:32 +01:00
echo "to continue reboot with \`sudo shutdown -r now \` and login with admin"
fi
# ask about LCD only on Raspbian
2019-02-04 21:01:33 +01:00
if [ " ${ baseImage } " = "raspbian" ] ; then
echo "Press ENTER to install LCD and reboot ..."
read key
# give Raspi a default hostname (optional)
sudo raspi-config nonint do_hostname "RaspiBlitz"
# *** Display selection ***
dialog --title "Display" --yesno "Are you using the default display available from Amazon?\nSelect 'No' if you are using the Swiss version from play-zone.ch!" 6 80
defaultDisplay = $?
2019-02-09 16:41:48 +01:00
if [ " ${ defaultDisplay } " = "0" ] ; then
2019-02-04 21:01:33 +01:00
# *** RASPIBLITZ / LCD (at last - because makes a reboot) ***
# based on https://www.elegoo.com/tutorial/Elegoo%203.5%20inch%20Touch%20Screen%20User%20Manual%20V1.00.2017.10.09.zip
2019-02-09 16:41:48 +01:00
echo "--> LCD DEFAULT"
2019-02-04 21:01:33 +01:00
cd /home/admin/
sudo apt-mark hold raspberrypi-bootloader
git clone https://github.com/goodtft/LCD-show.git
sudo chmod -R 755 LCD-show
sudo chown -R admin:admin LCD-show
cd LCD-show/
sudo ./LCD35-show
2019-02-09 16:41:48 +01:00
2019-02-04 21:01:33 +01:00
else
2019-02-09 16:41:48 +01:00
2019-02-04 21:01:33 +01:00
# Download and install the driver
# based on http://www.raspberrypiwiki.com/index.php/3.5_inch_TFT_800x480@60fps
2019-02-09 16:41:48 +01:00
echo "--> LCD ALTERNATIVE"
2019-02-04 21:01:33 +01:00
cd /boot
sudo wget http://www.raspberrypiwiki.com/download/RPI-HD-35-INCH-TFT/dt-blob-For-3B-plus.bin
sudo mv dt-blob-For-3B-plus.bin dt-blob.bin
cat <<EOF >> config.txt
dtparam = spi = off
dtparam = i2c_arm = off
# Set screen size and any overscan required
overscan_left = 0
overscan_right = 0
overscan_top = 0
overscan_bottom = 0
framebuffer_width = 800
framebuffer_height = 480
enable_dpi_lcd = 1
display_default_lcd = 1
dpi_group = 2
dpi_mode = 87
dpi_output_format = 0x6f015
# set up the size to 800x480
hdmi_timings = 480 0 16 16 24 800 0 4 2 2 0 0 0 60 0 32000000 6
#rotate screen
display_rotate = 3
dtoverlay = i2c-gpio,i2c_gpio_scl= 24,i2c_gpio_sda= 23
fi
2019-02-06 11:09:20 +01:00
EOF
2019-02-09 16:41:48 +01:00
init 6
fi
2019-02-06 12:06:50 +01:00
fi