updated master script

This commit is contained in:
naturallaw77 2023-06-17 11:46:06 -07:00
parent 90aec3594b
commit 69d19cf2a1

View File

@ -20,10 +20,24 @@ if [[ $? -eq 1 ]]; then
else
#### Check to See If It Has Been Run Before ####
#### Initial Reseter Tag
if [ ! -f /var/lib/beacons/reseter ]; then
ssh -i /home/free/.ssh/factory_login root@${ID} 'mkdir /var/lib/reseter ; touch /var/lib/reseter/started'
zenity --error \
--ellipsize \
--no-wrap \
--title="Sovran_SystemsOS_Reseter" \
--text="Will Not Start, Already Completed"
exit 1
else
#### Initial Reseter Tag ####
ssh -i /home/free/.ssh/factory_login root@${ID} 'mkdir /var/lib/beacons ; touch /var/lib/beacons/reseter/started'
if [[ $? != 0 ]]; then
@ -31,13 +45,14 @@ ssh -i /home/free/.ssh/factory_login root@${ID} 'mkdir /var/lib/reseter ; touch
--ellipsize \
--no-wrap \
--title="Sovran_SystemsOS_Reseter" \
--text="Could Not Start, Already Completed"
--text="Could Not Create Reseter Tag"
exit 1
fi
#### Create New Log In Key For the Local Sovran Pro ####
PASS=$(zenity --password --title="Please Type In A New Sovran Pro Updater Password")
PASS=$(zenity --password --title="Please Type In A New Sovran Pro Updater Password")
if [[ $? -eq 1 ]]; then
@ -46,7 +61,7 @@ PASS=$(zenity --password --title="Please Type In A New Sovran Pro Updater Passwo
else
ssh-keygen -q -N "${PASS}" -t ed25519 -f /home/free/.ssh/sovranpro_login
ssh-keygen -q -N "${PASS}" -t ed25519 -f /home/free/.ssh/sovranpro_login
if [[ $? != 0 ]]; then
@ -60,7 +75,7 @@ ssh-keygen -q -N "${PASS}" -t ed25519 -f /home/free/.ssh/sovranpro_login
fi
ssh -i /home/free/.ssh/factory_login root@${ID} 'sed -i -e "0,/ssh-ed25519.*/{ s::$(cat /home/free/.ssh/sovranpro_login.pub): }" /root/.ssh/authorized_keys'
ssh -i /home/free/.ssh/factory_login root@${ID} 'sed -i -e "0,/ssh-ed25519.*/{ s::$(cat /home/free/.ssh/sovranpro_login.pub): }" /root/.ssh/authorized_keys'
if [[ $? != 0 ]]; then
@ -73,7 +88,7 @@ ssh -i /home/free/.ssh/factory_login root@${ID} 'sed -i -e "0,/ssh-ed25519.*/{ s
exit 1
fi
fi
fi
rm -rf /home/free/.ssh/factory_login /home/free/.ssh/factory_login.pub
@ -463,7 +478,7 @@ fi
#### FINAL RESETER TAG ####
ssh -i /home/free/.ssh/sovranpro_login root@${ID} 'touch /var/lib/reseter/completed'
ssh -i /home/free/.ssh/sovranpro_login root@${ID} 'touch /var/lib/beacons/reseter/completed'
if [[ $? != 0 ]]; then