freeleaps-pub/devbox/devbox.remote/init_open_box.sh
2025-01-16 08:41:50 +00:00

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