forked from freeleaps/freeleaps-pub
10 lines
355 B
Bash
Executable File
10 lines
355 B
Bash
Executable File
#!/bin/bash
|
|
apt update -y
|
|
apt install sudo
|
|
apt install vim
|
|
apt install nodejs
|
|
apt install npm
|
|
read -p "Enter your FLID (the part before '@' in your freeleaps.com email ): " FLID
|
|
read -p "Continue? (Y/N): " confirm && [[ $confirm == [yY] || $confirm == [yY][eE][sS] ]] || exit 1
|
|
source ./init_flid_account.sh $FLID
|
|
sudo -s -u $FLID source ./init_devbox.sh |