diff --git a/entrypoint.sh b/entrypoint.sh index c66724c..5f08480 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,20 +1,12 @@ #!/bin/bash set -e -# if a command was specified, we run that command. E.g. helpful when we do -# docker run -it /bin/bash -if [ "${1}" ] -then - exec "$@" -# otherwise we attempt to run fahclient. -else - /opt/fahclient/FAHClient \ - --user="${USER}" \ - --team="${TEAM}" \ - --passkey="${PASSKEY}" \ - --gpu="${ENABLE_GPU}" \ - --smp="${ENABLE_SMP}" \ - --power=full \ - --gui-enabled=false \ - "${@}" -fi +/opt/fahclient/FAHClient \ + --user="${USER}" \ + --team="${TEAM}" \ + --passkey="${PASSKEY}" \ + --gpu="${ENABLE_GPU}" \ + --smp="${ENABLE_SMP}" \ + --power=full \ + --gui-enabled=false \ + "${@}"