Fix adduser Usage (Thanks @gamercat113)

This commit is contained in:
TheBrokenRail 2020-10-10 20:36:42 -04:00
parent b607356c86
commit c756153cfb

View File

@ -17,8 +17,13 @@ VIRGL_PID="$!"
# Ensure Groups Are Correct
if [ -z "${MCPI_SUBSHELL}" ]; then
if ! id -Gn "$(whoami)" | grep '\bdocker\b' > /dev/null; then
if ! command -v adduser &> /dev/null
then
pkexec usermod -aG "$(whoami)" docker
else
pkexec adduser "$(whoami)" docker
fi
fi
exec sg docker "env MCPI_SUBSHELL=1 \"$(realpath -e "$0")\""
fi