mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-02 19:57:42 +08:00
10 lines
235 B
Bash
10 lines
235 B
Bash
#!/bin/bash
|
|
if [ "$1" = "bash" ];then
|
|
exec /bin/bash
|
|
elif [ "$1" = "version" ];then
|
|
echo "$RELEASE_DESC"
|
|
elif [ "$1" = "copy" ];then
|
|
cp -a /run/rainbond-grctl /rootfs/usr/local/bin/
|
|
else
|
|
exec /run/rainbond-grctl "$@"
|
|
fi |