Files
front_linux/LFtid1056/boot/feservice

30 lines
393 B
Plaintext
Raw Normal View History

2025-09-04 20:59:17 +08:00
#!/bin/bash
2025-10-11 10:18:57 +08:00
export CLOUD_PATH=/FeProject
2025-09-04 20:59:17 +08:00
if [ -z "$CLOUD_PATH" ]; then
echo "Error: CLOUD_PATH is not set. Please set it first."
exit 1
fi
case "$1" in
'start')
$CLOUD_PATH/boot/start_fe.sh
;;
'stop')
$CLOUD_PATH/boot/stop_fe.sh
;;
'restart')
$CLOUD_PATH/boot/stop_fe.sh
$CLOUD_PATH/boot/start_fe.sh
;;
*)
echo "Usage: feservice start|stop|restart"
exit 1
;;
esac