Rainbond/hack/contrib/docker/eventlog/entrypoint.sh
2017-11-22 13:56:59 +08:00

8 lines
154 B
Bash
Executable File

#!/bin/bash
if [ "$1" = "debug" ];then
exec /bin/bash
elif [ "$1" = "version" ];then
echo $RELEASE_DESC
else
exec /run/rainbond-eventlog $@
fi