Browse Source

perf: 修复容器重启页面报错

pull/8867/head
吴小白 2 years ago committed by Jiangjie.Bai
parent
commit
1a7fd58abf
  1. 4
      entrypoint.sh

4
entrypoint.sh

@ -11,6 +11,9 @@ action="${1-start}"
service="${2-all}"
trap cleanup EXIT
rm -f /opt/jumpserver/tmp/*.pid
if [[ "$action" == "bash" || "$action" == "sh" ]];then
bash
elif [[ "$action" == "sleep" ]];then
@ -19,4 +22,3 @@ elif [[ "$action" == "sleep" ]];then
else
python jms "${action}" "${service}"
fi

Loading…
Cancel
Save