undo if/else
This commit is contained in:
parent
f06d174012
commit
c373fd500f
|
@ -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 <container> /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 \
|
||||
"${@}"
|
||||
|
|
Loading…
Reference in a new issue