4 Star 1 Fork 3

明实-椰子树 / 堡垒机

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
entrypoint.sh 303 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
function cleanup()
{
local pids=`jobs -p`
if [[ "${pids}" != "" ]]; then
kill ${pids} >/dev/null 2>/dev/null
fi
}
service="all"
if [[ "$1" != "" ]];then
service=$1
fi
trap cleanup EXIT
if [[ "$1" == "bash" ]];then
bash
else
python jms start ${service}
fi
Python
1
https://gitee.com/mingshitech-coconet/fortress-machine.git
git@gitee.com:mingshitech-coconet/fortress-machine.git
mingshitech-coconet
fortress-machine
堡垒机
master

搜索帮助