revert: entrypoint.sh

pull/13990/head
ibuler 2024-08-15 20:09:55 +08:00 committed by Bryan
parent 60fcf5fcd3
commit 2b160fbbc2
1 changed files with 22 additions and 8 deletions

View File

@ -1,12 +1,26 @@
#!/bin/bash
#
# 不能删掉 cleanup 会产生僵尸进程
function cleanup()
{
local pids=`jobs -p`
if [[ "${pids}" != "" ]]; then
kill ${pids} >/dev/null 2>/dev/null
fi
}
action="${1-start}"
service="${2-all}"
trap cleanup EXIT
rm -f /opt/jumpserver/tmp/*.pid
case "$1" in
start|init_db|upgrade_db)
set -- /opt/jumpserver/jms "$@"
;;
esac
exec "$@"
if [[ "$action" == "bash" || "$action" == "sh" ]];then
bash
elif [[ "$action" == "sleep" ]];then
echo "Sleep 365 days"
sleep 365d
else
python jms "${action}" "${service}"
fi