upload bash script

master
Can202 2021-06-12 01:52:11 -04:00
parent 4040704b82
commit be2500ab7d
1 changed files with 56 additions and 0 deletions

56
zerotier.sh Executable file
View File

@ -0,0 +1,56 @@
#!/bin/sh
echo "do you use su command?(y/n)"
read sucommand
if [ $sucommand = y ]
then
echo "I need your username to add to the sudo group"
echo "IMPORTANT: please put the real username, not Real Name, example: manuel yes, Manuel no"
echo "tell me your username"
read username
echo "again"
read usernameagain
if [ $username = $usernameagain ]
then
echo GOOD
su -c "sudo adduser $username sudo"
echo added to the sudo group
echo "restart the PC, and then say you don't use the su command"
read nothing
exit
else
echo ERROR: not equal
exit
fi
else
if [ $sucommand = n ]
then
echo OK
else
echo ERROR
exit
fi
fi
echo "this script works on Debian, Ubuntu, Linux Mint, etc. (apt)"
echo "continue?(y/n)"
read debbased
if [ $debbased = n ]
then
echo abort
exit
fi
sudo apt install curl git python3 python3-tk xterm
echo satisfied dependencies
xterm -e "curl -s https://install.zerotier.com | sudo bash"
echo ZeroTier installed