[fix] The install script should ask for a user

This commit is contained in:
alban 2020-10-16 08:43:23 +02:00
parent a9268b0d73
commit 506616cb1b
1 changed files with 7 additions and 0 deletions

View File

@ -3,6 +3,12 @@
# Check if root
[[ 0 -ne $UID ]] && { echo "Must run as root. Exiting."; exit; }
# Require a user for exploitation
DEFAULT=$(getent group 1000|cut -d: -f1)
read -e -i "$DEFAULT" -p "Please provide the system user who will own the project: " USER
getent group "$USER" &>/dev/null || { echo "Sorry, but '$USER' does not exist on this system. Exiting."; exit 2; }
# Propose some packages
echo -e "\nThe following packages are not mandatory, add them as needed.\n"
declare -a ADD_PACK
@ -30,3 +36,4 @@ git clone https://github.com/ptone/pyosc --depth 1 /tmp/pyosc && cd /tmp/pyosc &
cd /tmp && git clone https://github.com/Ableton/link.git && cd link && git submodule update --init --recursive && mkdir build && cd build && cmake .. && cmake --build .
cd /tmp/ && git clone --recursive https://github.com/gonzaloflirt/link-python.git && cd link-python && mkdir build && cd build && cmake .. && cmake --build .
cd /opt/ && git clone https://git.interhacker.space/teamlaser/LJ
chown -R $USER /opt/LJ