#!/bin/bash set -e version=7.0.Final date=25/08/2024 pi7z_i="" swap_was="0" ftp_i=0 pv_i=0 cifs_i=0 retry_flag=0 daemon_on=0 split_size=512 OSV=$(sed 's/\..*//' /etc/debian_version) DietPi_="NO" if [ $OSV = 8 ];then img_v="Jessie";fi if [ $OSV = 9 ];then img_v="Strecth"; fi if [ $OSV = 10 ];then img_v="Buster"; fi if [ $OSV = 11 ];then img_v="Bullseye"; fi echo -e "$(tput setaf 5)" echo -e " ╔╗ ╔═╗╔═╗╔╦╗╔═╗╔╦╗╦═╗╔═╗╔═╗" echo -e " ╠╩╗║ ║║ ║ ║ ╚═╗ ║ ╠╦╝╠═╣╠═╝" echo -e " ╚═╝╚═╝╚═╝ ╩ ╚═╝ ╩ ╩╚═╩ ╩╩ " echo -e " ╔╗ ╦ ╦╦╦ ╔╦╗╔═╗╦═╗ " echo -e " ╠╩╗║ ║║║ ║║║╣ ╠╦╝ " echo -e " ╚═╝╚═╝╩╩═╝═╩╝╚═╝╩╚═ " echo -e "" echo -e "\e[97mOkcash Blockchain Uploader v$version ($date)\e[0m" echo -e "Author : wareck@gmail.com" echo -e "" echo -e "Raspbian : $img_v" echo -e "Upload : Mega.nz" echo -e "Format : 7z" echo -e "Packet Size : $split_size Mo" echo -e "" sleep 4 function init { if ps -ef | grep -v grep | grep okcashd >/dev/null then daemon_on=1 echo -e "\n\e[93mStopping Okcashd :\e[0m" okcashd stop 2>/dev/null || true && sudo /etc/init.d/cron stop 2>/dev/null || true sleep 2 if ps -ef | grep -v grep | grep okcashd >/dev/null ; then killall -9 okcashd; fi sleep 2 if [ -f /usr/local/bin/okcashd ];then sudo mv /usr/local/bin/okcashd /usr/local/bin/okcashd_old |true ;fi if ps -ef | grep -v grep | grep okcashd >/dev/null ; then killall -9 okcashd; fi echo "Done." fi if [ "`systemctl is-active watchdog.service`" = "active" ] then echo -e "\n\e[93mStopping watchdog :\e[0m" sudo systemctl stop watchdog >/dev/null echo "Done." fi if [ -d /home/$USER/scripts/ledstatus/ ] then case $OSV in 11) sudo python3 /home/$USER/scripts/ledstatus/led_off.py ;; *) sudo python /home/$USER/scripts/ledstatus/led_off.py ;; esac fi if [ -f /var/swap ] then echo -e "\n\e[93mStopping Swap :\e[0m" sudo dphys-swapfile swapoff /var/swap sudo rm /var/swap swap_was="1" echo "Done." fi } function check_software_ { echo -e "\n\e[95mChecking Softwares :\e[0m" echo -e -n "Check PI7Z installed : " if ! [ -x "$(command -v 7z)" ]; then pi7z_i="p7zip-full" && echo -e "[\e[91m NO \e[0m]"; else pi7z_i="" && echo -e "[\e[92m YES \e[0m]"; fi echo -e -n "Check LFTP installed : " if ! [ -x "$(command -v lftp)" ]; then ftp_i="lftp" && echo -e "[\e[91m NO \e[0m]"; else ftp_i="" && echo -e "[\e[92m YES \e[0m]"; fi echo -e -n "Check CIFS installed : " if ! [ -x "$(command -v cifscreds)" ]; then cifs_i="cifs-utils" && echo -e "[\e[91m NO \e[0m]"; else cifs_i="" && echo -e "[\e[92m YES \e[0m]"; fi echo -e -n "Check PV installed : " if ! [ -x "$(command -v pv)" ]; then pv_i="pv" && echo -e "[\e[91m NO \e[0m]"; else pv_i="" && echo -e "[\e[92m YES \e[0m]"; fi if [[ ! $ftp_i = "" || ! $pi7z_i = "" || ! $pv_i = "" || ! $cifs_i = "" ]] then echo -e "\n\e[95mSoftwares update & install :\e[0m" sudo apt-get update sudo apt install $pi7z_i $ftp_i $pv_i $cifs_i cifs-utils -y check_software_ fi echo -e "Done." } function freeze_on { NEW_FAN=5 NEW_THR=4 if [ -f /home/$USER/scripts/run-fan.py ] then echo -e "\n\e[95mEnable \e[38;5;196mF\e[38;5;202mr\e[38;5;208me\e[38;5;214me\e[38;5;220mz\e[38;5;226mi\e[38;5;227mn\e[38;5;229mg\e[0m \e[95m:\e[0m" sudo systemctl stop run-fan.service if ! [ -f /home/$USER/freeze.txt ] then if grep "ON_THRESHOLD" /home/$USER/scripts/run-fan.py >/dev/null then grep -i "ON_THRESHOLD = " /home/$USER/scripts/run-fan.py |awk 'NR==1 {print$3;exit}' >/home/$USER/freeze.txt grep -i "OFF_THRESHOLD = " /home/$USER/scripts/run-fan.py |awk 'NR==1 {print$3;exit}' >>/home/$USER/freeze.txt fi fi OLD_FAN=`cat /home/$USER/freeze.txt| awk 'NR==1 {print $1;exit}'` OLD_THR=`cat /home/$USER/freeze.txt| awk 'NR==2 {print $1;exit}'` echo "Fan PWM value : $OLD_FAN => $NEW_FAN" echo "Fan Threshold : $OLD_THR => $NEW_THR" if grep "ON_THRESHOLD = " /home/$USER/scripts/run-fan.py >/dev/null then sed -i -e "s/ON_THRESHOLD = "$OLD_FAN"/ON_THRESHOLD = "$NEW_FAN"/g" /home/$USER/scripts/run-fan.py sed -i -e "s/OFF_THRESHOLD = "$OLD_THR"/OFF_THRESHOLD = "$NEW_THR"/g" /home/$USER/scripts/run-fan.py fi sudo systemctl restart run-fan.service echo -e "Done." fi } function freeze_off { echo -e -n "" if [ -f /home/$USER/scripts/run-fan.py ] then echo -e "\n\e[95mDisable Freezing :\e[0m" OLD_FAN=`cat /home/$USER/freeze.txt| awk 'NR==1 {print $1;exit}'` OLD_THR=`cat /home/$USER/freeze.txt| awk 'NR==2 {print $1;exit}'` if grep "ON_THRESHOLD" /home/$USER/scripts/run-fan.py >/dev/null then echo "Fan PWM value : $NEW_FAN => $OLD_FAN" echo "Fan Threshold : $NEW_THR => $OLD_THR" else echo "Fan value: $NEW_FAN =>$OLD_FAN" fi sudo systemctl stop run-fan.service if grep "ON_THRESHOLD" /home/$USER/scripts/run-fan.py >/dev/null then sed -i -e "s/ON_THRESHOLD = "$NEW_FAN"/ON_THRESHOLD = "$OLD_FAN"/g" /home/$USER/scripts/run-fan.py sed -i -e "s/OFF_THRESHOLD = "$NEW_THR"/OFF_THRESHOLD = "$OLD_THR"/g" /home/$USER/scripts/run-fan.py else sed -i -e "s/self.startTemperature = "$NEW_FAN"/self.startTemperature = "$OLD_FAN"/g" /home/$USER/scripts/run-fan.py fi sudo systemctl restart run-fan.service if [ -f /home/$USER/freeze.txt ];then rm /home/$USER/freeze.txt;fi echo -e "Done." fi } function freeze_on_old { NEW_FAN=5.0 if [ -f /home/$USER/scripts/run-fan.py ] then echo -e "\n\e[95mEnable \e[38;5;196mF\e[38;5;202mr\e[38;5;208me\e[38;5;214me\e[38;5;220mz\e[38;5;226mi\e[38;5;227mn\e[38;5;229mg\e[0m \e[95m:\e[0m" sudo systemctl stop run-fan.service if ! [ -f /home/$USER/freeze.txt ] then if grep "# Author: Andreas Spiess" /home/$USER/scripts/run-fan.py >/dev/null then grep -i "desiredTemp = " /home/$USER/scripts/run-fan.py |awk 'NR==1 {print$3;exit}' >/home/$USER/freeze.txt else grep -i "self.startTemperature = " /home/$USER/scripts/run-fan.py |awk 'NR==1 {print$3;exit}' >/home/$USER/freeze.txt fi fi OLD_FAN=`cat /home/$USER/freeze.txt | awk '{print $1}'` echo "Fan PWM value : $OLD_FAN => $NEW_FAN" if grep "# Author: Andreas Spiess" ~/scripts/run-fan.py >/dev/null then sed -i -e "s/desiredTemp = "$OLD_FAN"/desiredTemp = "$NEW_FAN"/g" /home/$USER/scripts/run-fan.py else sed -i -e "s/self.startTemperature = "$OLD_FAN"/self.startTemperature = "$NEW_FAN"/g" /home/$USER/scripts/run-fan.py fi sudo systemctl restart run-fan.service echo -e "Done." sleep 1 fi } function freeze_off_old { echo -e -n "" if [ -f /home/$USER/scripts/run-fan.py ] then echo -e "\n\e[95mDisable Freezing :\e[0m" OLD_FAN=`cat /home/$USER/freeze.txt| awk '{print $1}'` if grep "# Author: Andreas Spiess" ~/scripts/run-fan.py >/dev/null then echo "Fan PWM value : $NEW_FAN => $OLD_FAN" else echo "Fan value: $NEW_FAN =>$OLD_FAN" fi sudo systemctl stop run-fan.service if grep "# Author: Andreas Spiess" ~/scripts/run-fan.py >/dev/null then sed -i -e "s/desiredTemp = "$NEW_FAN"/desiredTemp = "$OLD_FAN"/g" /home/$USER/scripts/run-fan.py else sed -i -e "s/self.startTemperature = "$NEW_FAN"/self.startTemperature = "$OLD_FAN"/g" /home/$USER/scripts/run-fan.py fi sudo systemctl restart run-fan.service if [ -f /home/$USER/freeze.txt ];then rm /home/$USER/freeze.txt;fi echo -e "Done." fi } function packit { echo -e "\n\e[95mPacking & Compressing Files :\e[0m" cd /home/$USER echo -e "\e[97mCompress & split bootstrap.7z:\e[0m" split_size="${split_size}m" #7z a -m0=lzma -mx9 -mfb=64 -md32m -v$split_size bootstrap .okcash/blk0001.dat .okcash/txleveldb/ #7z a -mx7 -v$split_size bootstrap .okcash/blk0001.dat .okcash/txleveldb/ 7z a -m0=lzma2 -mx=7 -mfb=64 -md=32m -v$split_size bootstrap .okcash/blk0001.dat .okcash/blk0002.dat .okcash/txleveldb/ sleep 1 echo "Done." echo -e "\n\e[95mMake bootstrap_v.txt:\e[0m" if [ -f bootstrap_v.txt ]; then rm bootstrap_v.txt;fi Raw_date="`date +%d.%m.%Y`" YYYY=`ls -l bootstrap*.0* | wc -l` cat <<'EOF'>> bootstrap_v.txt Bootstrap : XXXX Parts: YYYY Size : ZZZZ Mo Links: EOF sed -i -e "s/XXXX/$Raw_date/g" bootstrap_v.txt sed -i -e "s/YYYY/$YYYY/g" bootstrap_v.txt split_size="${split_size%?}" sed -i -e "s/ZZZZ/$split_size/g" bootstrap_v.txt echo "Done." echo -e "\n\e[95mMd5sum Files:\e[0m" zap=$(ls -l bootstrap.7z.* | wc -l) for i in `seq -w 001 $zap` do echo -e -n "md5sum Bootstrap.7z.$i: " && md5sum bootstrap.7z.$i > bootstrap.$i.md5 && echo -e "\e[1mDone.\e[0m" done touch /home/$USER/bootstrap_uploadpass } function ftp_check { FTP_SUCCESS_MSG="226 Transfer complete" if fgrep "$FTP_SUCCESS_MSG" $Ftp_LOG ;then echo "ftp transfer : OK" echo "" rm $Ftp_LOG else echo "ftp transfer Error: $ftp_file" rm $Ftp_LOG echo "" ftp_loop fi } function ftp_loop { lftp -u wareck,Kraken@2611! ftpperso.free.fr </dev/null then sudo umount /tmp/bootstrap/ sudo systemctl daemon-reload fi sudo mount -t cifs //mafreebox.freebox.fr/Disque\ dur/ /tmp/bootstrap/ -o user=freebox,password=password,uid=1000,gid=1000,rw,vers=1.0 sudo systemctl daemon-reload if ! [ -d /tmp/bootstrap/bootstrap ]; then mkdir /tmp/bootstrap/bootstrap ;fi cp -v bootstrap.7z.* /tmp/bootstrap/bootstrap/ cp -v bootstrap_v.txt /tmp/bootstrap/bootstrap/ cp -v bootstrap.*.md5 /tmp/bootstrap/bootstrap/ if [ -f bootstrap_okcash ] then rm -r bootstrap_okcash fi sleep 5 sudo umount /tmp/bootstrap sudo systemctl daemon-reload freeze_off echo -e "\n\e[92mUpload Done ...\n\e[0m" } function end_restart { if [ -f /usr/local/bin/okcashd_old ] then sudo mv /usr/local/bin/okcashd_old /usr/local/bin/okcashd | true okcashd fi } function retry { if [ -f /home/$USER/bootstrap_uploadpass ]; then retry_flag=1 ;fi if [ $retry_flag = "1" ] then echo -e "\n\e[95mRetry Upload to server :\e[0m" echo -e "Old files are still present." echo -e "If you want to force restart build/upload" echo -e "remove files by using this command:" echo -e "" echo -e "rm -r -f /home/$USER/bootstrap.7z.* /home/$USER/bootstrap_v.txt /home/$USER/bootstrap.7z.*.md5 /home/$USER/bootstrap_uploadpass" sleep 5 fi } if ps -ef | grep -v grep | grep okcashd >/dev/null then echo -e "\n\e[38;5;166mOKcash daemon is working => shutdown and restart during this process !...\e[0m" while true; do read -p "Do you want to start processing (y/n) ? " yn case $yn in [Yy]* ) init ; check_software_; freeze_on ; retry ; packit ; upload ; end_restart ; break;; [Nn]* ) exit;; * ) echo "Please answer yes or no.";; esac done else init check_software_ freeze_on retry if [ $retry_flag = "1" ] then upload end_restart else packit upload end_restart fi fi if [ swap_was = 1 ] then echo -e "\n\e[95mRestart Swap:\e[0m" sudo dphys-swapfile setup sudo dphys-swapfile swapon echo "Done." fi if [ -f /home/$USER/bootstrap_uploadpass ]; then rm /home/$USER/bootstrap_uploadpass;fi if [ $daemon_on = 1 ] then echo -e "\n\e[38;5;166mOKcash daemon is restarting ...\e[0m" if [ -f /usr/local/bin/okcashd_old ] then sudo mv /usr/local/bin/okcashd_old /usr/local/bin/okcashd | true fi fi echo ""