mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-20 18:22:01 +01:00
92 lines
2.7 KiB
Bash
Executable File
92 lines
2.7 KiB
Bash
Executable File
#!/bin/sh
|
|
echo ""
|
|
|
|
# add bonus scripts
|
|
./91addBonus.sh
|
|
|
|
###### SWAP & FS
|
|
echo "*** SWAP file ***"
|
|
swapExists=$(swapon -s | grep -c /mnt/hdd/swapfile)
|
|
if [ ${swapExists} -eq 1 ]; then
|
|
echo "SWAP on HDD already exists"
|
|
else
|
|
echo "No SWAP found ... creating 1GB SWAP on HDD"
|
|
sudo sed -i "12s/.*/CONF_SWAPFILE=\/mnt\/hdd\/swapfile/" /etc/dphys-swapfile
|
|
sudo sed -i "16s/.*/CONF_SWAPSIZE=1024/" /etc/dphys-swapfile
|
|
echo "OK - edited /etc/dphys-swapfile"
|
|
echo "Creating file ... this can take some seconds .."
|
|
sudo dd if=/dev/zero of=/mnt/hdd/swapfile bs=1024 count=1024000
|
|
sudo mkswap /mnt/hdd/swapfile
|
|
sudo dphys-swapfile setup
|
|
sudo chmod 0600 /mnt/hdd/swapfile
|
|
sudo dphys-swapfile swapon
|
|
|
|
# expand FS of SD
|
|
echo "*** Expand RootFS ***"
|
|
sudo raspi-config --expand-rootfs
|
|
echo ""
|
|
fi
|
|
|
|
swapExists=$(swapon -s | grep -c /mnt/hdd/swapfile)
|
|
if [ ${swapExists} -eq 1 ]; then
|
|
echo "OK - SWAP is working"
|
|
else
|
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
|
echo "WARNING - Not able to to build SWAP on HDD"
|
|
echo "This is not critical ... but try to fix later."
|
|
echo "--> will continue in 60 seconds <--"
|
|
sleep 60
|
|
fi
|
|
|
|
# firewall - just install (not configure)
|
|
echo ""
|
|
echo "*** Setting and Activating Firewall ***"
|
|
sudo apt-get install -y ufw
|
|
echo "deny incoming connection on other ports"
|
|
sudo ufw default deny incoming
|
|
echo "allow outgoing connections"
|
|
sudo ufw default allow outgoing
|
|
echo "allow: ssh"
|
|
sudo ufw allow ssh
|
|
echo "allow: bitcoin testnet"
|
|
sudo ufw allow 18333 comment 'bitcoin testnet'
|
|
echo "allow: bitcoin mainnet"
|
|
sudo ufw allow 8333 comment 'bitcoin mainnet'
|
|
echo "allow: litecoin mainnet"
|
|
sudo ufw allow 9333 comment 'litecoin mainnet'
|
|
echo 'allow: lightning testnet'
|
|
sudo ufw allow 19735 comment 'lightning testnet'
|
|
echo "allow: lightning mainnet"
|
|
sudo ufw allow 9735 comment 'lightning mainnet'
|
|
echo "allow: lightning gRPC"
|
|
sudo ufw allow 10009 comment 'lightning gRPC'
|
|
echo "allow: trasmission"
|
|
sudo ufw allow 51413 comment 'transmission'
|
|
echo "allow: local web admin"
|
|
sudo ufw allow from 192.168.0.0/24 to any port 80 comment 'allow local LAN web'
|
|
echo "enable lazy firewall"
|
|
sudo ufw --force enable
|
|
echo ""
|
|
|
|
# mark setup is done
|
|
echo "90" > /home/admin/.setup
|
|
|
|
# show info to user
|
|
dialog --backtitle "RaspiBlitz - Setup" --title " RaspiBlitz Setup is done :) " --msgbox "
|
|
Press OK for a final reboot.
|
|
|
|
Remember: After every reboot
|
|
you need to unlock the LND wallet.
|
|
" 10 42
|
|
|
|
# set the hostname inputed on initDialog
|
|
hostname=`cat .hostname`
|
|
echo "Setting new network hostname '$hostname'"
|
|
sudo raspi-config nonint do_hostname ${hostname}
|
|
|
|
# mark setup is done (100%)
|
|
echo "100" > /home/admin/.setup
|
|
|
|
clear
|
|
echo "Setup done. Rebooting now."
|
|
sudo shutdown -r now |