add front demo in this project
This commit is contained in:
22
LFtid1056/cloudfront/boot/feservice
Normal file
22
LFtid1056/cloudfront/boot/feservice
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user