modify shell scripts

This commit is contained in:
lnk
2026-04-08 09:45:45 +08:00
parent 1b2dd863e9
commit fb55b76005
6 changed files with 314 additions and 35 deletions

22
boot/feservice Normal file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
case "$1" in
'start')
$FEP_ENV/boot/start_fe.sh
;;
'stop')
$FEP_ENV/boot/stop_fe.sh
;;
'restart')
$FEP_ENV/boot/stop_fe.sh
$FEP_ENV/boot/start_fe.sh
;;
*)
echo "Usage: feservice start|stop|restart"
exit 1
;;
esac