fix: change the filename from script to scripts

Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
pull/382/head
Xinwei Xiong(cubxxw) 2 years ago
parent 7313168bb7
commit feca0bdef7

@ -75,7 +75,7 @@ By deployment of the Open-IM-Server on the customer's server, developers can int
4. Check service 4. Check service
``` ```
cd script; cd scripts;
./docker_check_service.sh./check_all.sh ./docker_check_service.sh./check_all.sh
``` ```
@ -135,18 +135,18 @@ all services build success
- multiloginpolicy&&tokenpolicy - multiloginpolicy&&tokenpolicy
- Open-IM supports multi-terminal login. Currently, there are three multi-terminal login policies. The PC terminal and the mobile terminal are online at the same time by default. When multiple policies are configured to be true, the first policy with true is used by default, and the token policy is the generated token policy. , The developer can customize the expiration time of the token - Open-IM supports multi-terminal login. Currently, there are three multi-terminal login policies. The PC terminal and the mobile terminal are online at the same time by default. When multiple policies are configured to be true, the first policy with true is used by default, and the token policy is the generated token policy. , The developer can customize the expiration time of the token
### SCRIPT DESCRIPTION ### scripts DESCRIPTION
> Open-IM script provides service compilation, start, and stop scripts. There are four Open-IM script start modules, one is the http+rpc service start module, the second is the websocket service start module, then the msg_transfer module, and the last is the push module > Open-IM scripts provides service compilation, start, and stop scripts. There are four Open-IM scripts start modules, one is the http+rpc service start module, the second is the websocket service start module, then the msg_transfer module, and the last is the push module
- path_info.cfg&&style_info.cfg&&functions.sh - path_info.cfg&&style_info.cfg&&functions.sh
- Contains the path information of each module, including the path where the source code is located, the name of the service startup, the shell print font style, and some functions for processing shell strings - Contains the path information of each module, including the path where the source code is located, the name of the service startup, the shell print font style, and some functions for processing shell strings
- build_all_service.sh - build_all_service.sh
- Compile the module, compile all the source code of Open-IM into a binary file and put it into the bin directory - Compile the module, compile all the source code of Open-IM into a binary file and put it into the bin directory
- start_rpc_api_service.sh&&msg_gateway_start.sh&&msg_transfer_start.sh&&push_start.sh - start_rpc_api_service.sh&&msg_gateway_start.sh&&msg_transfer_start.sh&&push_start.sh
- Independent script startup module, followed by api and rpc modules, message gateway module, message transfer module, and push module - Independent scripts startup module, followed by api and rpc modules, message gateway module, message transfer module, and push module
- start_all.sh&&stop_all.sh - start_all.sh&&stop_all.sh
- Total script, start all services and close all services - Total scripts, start all services and close all services
## Authentication Clow Chart ## Authentication Clow Chart

@ -9,7 +9,7 @@ WORKDIR /Open-IM-Server
# add all files to the container # add all files to the container
COPY . . COPY . .
WORKDIR /Open-IM-Server/script WORKDIR /Open-IM-Server/scripts
RUN chmod +x *.sh RUN chmod +x *.sh
RUN /bin/sh -c ./build_all_service.sh RUN /bin/sh -c ./build_all_service.sh
@ -27,13 +27,13 @@ RUN apt-get install -y vim curl tzdata gawk
RUN ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && dpkg-reconfigure -f noninteractive tzdata RUN ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && dpkg-reconfigure -f noninteractive tzdata
#set directory to map logs,config file,script file. #set directory to map logs,config file,scripts file.
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script","/Open-IM-Server/db/sdk"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts","/Open-IM-Server/db/sdk"]
#Copy scripts files and binary files to the blank image #Copy scripts files and binary files to the blank image
COPY --from=build /Open-IM-Server/script /Open-IM-Server/script COPY --from=build /Open-IM-Server/scripts /Open-IM-Server/scripts
COPY --from=build /Open-IM-Server/bin /Open-IM-Server/bin COPY --from=build /Open-IM-Server/bin /Open-IM-Server/bin
WORKDIR /Open-IM-Server/script WORKDIR /Open-IM-Server/scripts
CMD ["./docker_start_all.sh"] CMD ["./docker_start_all.sh"]

@ -10,10 +10,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_admin_cms $WORKDIR/cmd/main ADD ./open_im_admin_cms $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config", "/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config", "/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -9,10 +9,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_api $WORKDIR/cmd/main ADD ./open_im_api $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -9,10 +9,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_auth $WORKDIR/cmd/main ADD ./open_im_auth $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -10,10 +10,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_cache $WORKDIR/cmd/main ADD ./open_im_cache $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR
CMD ./main CMD ./main

@ -9,10 +9,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_cms_api $WORKDIR/cmd/main ADD ./open_im_cms_api $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR
CMD ./main CMD ./main

@ -9,10 +9,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_conversation $WORKDIR/cmd/main ADD ./open_im_conversation $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR
CMD ./main CMD ./main

@ -9,10 +9,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_demo $WORKDIR/cmd/main ADD ./open_im_demo $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -10,10 +10,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_friend $WORKDIR/cmd/main ADD ./open_im_friend $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR
CMD ./main CMD ./main

@ -9,10 +9,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_group $WORKDIR/cmd/main ADD ./open_im_group $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -10,10 +10,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_msg $WORKDIR/cmd/main ADD ./open_im_msg $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -9,10 +9,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_msg_gateway $WORKDIR/cmd/main ADD ./open_im_msg_gateway $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -9,10 +9,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_msg_transfer $WORKDIR/cmd/main ADD ./open_im_msg_transfer $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -10,10 +10,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_office $WORKDIR/cmd/main ADD ./open_im_office $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -10,10 +10,10 @@ ADD ./open_im_organization $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -10,10 +10,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_push $WORKDIR/cmd/main ADD ./open_im_push $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -12,7 +12,7 @@ ADD ./open_im_sdk_server $WORKDIR/main
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/db && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/db && \
chmod +x $WORKDIR/main chmod +x $WORKDIR/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script","/Open-IM-Server/db/sdk"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts","/Open-IM-Server/db/sdk"]
WORKDIR $CMDDIR WORKDIR $CMDDIR
CMD ./main CMD ./main

@ -9,10 +9,10 @@ ENV CONFIG_NAME $WORKDIR/config/config.yaml
ADD ./open_im_user $WORKDIR/cmd/main ADD ./open_im_user $WORKDIR/cmd/main
# 创建用于挂载的几个目录,添加可执行权限 # 创建用于挂载的几个目录,添加可执行权限
RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/script && \ RUN mkdir $WORKDIR/logs $WORKDIR/config $WORKDIR/scripts && \
chmod +x $WORKDIR/cmd/main chmod +x $WORKDIR/cmd/main
VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/script"] VOLUME ["/Open-IM-Server/logs","/Open-IM-Server/config","/Open-IM-Server/scripts"]
WORKDIR $CMDDIR WORKDIR $CMDDIR

@ -122,7 +122,7 @@ services:
- ./logs:/Open-IM-Server/logs - ./logs:/Open-IM-Server/logs
- ./config/config.yaml:/Open-IM-Server/config/config.yaml - ./config/config.yaml:/Open-IM-Server/config/config.yaml
- ./db/sdk:/Open-IM-Server/db/sdk - ./db/sdk:/Open-IM-Server/db/sdk
- ./script:/Open-IM-Server/script - ./scripts:/Open-IM-Server/scripts
restart: always restart: always
depends_on: depends_on:
- kafka - kafka

@ -122,7 +122,7 @@ services:
- ./config/config.yaml:/Open-IM-Server/config/config.yaml - ./config/config.yaml:/Open-IM-Server/config/config.yaml
- ./config/usualConfig.yaml:/Open-IM-Server/config/usualConfig.yaml - ./config/usualConfig.yaml:/Open-IM-Server/config/usualConfig.yaml
- ${DATA_DIR}/db/sdk:/Open-IM-Server/db/sdk - ${DATA_DIR}/db/sdk:/Open-IM-Server/db/sdk
- ./script:/Open-IM-Server/script - ./scripts:/Open-IM-Server/scripts
restart: always restart: always
depends_on: depends_on:
- kafka - kafka

@ -306,7 +306,7 @@ content_security_policy = false
# Set Content Security Policy template used when adding the Content-Security-Policy header to your requests. # Set Content Security Policy template used when adding the Content-Security-Policy header to your requests.
# $NONCE in the template includes a random nonce. # $NONCE in the template includes a random nonce.
# $ROOT_PATH is server.root_url without the protocol. # $ROOT_PATH is server.root_url without the protocol.
content_security_policy_template = """script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' $NONCE;object-src 'none';font-src 'self';style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com ws://$ROOT_PATH wss://$ROOT_PATH;manifest-src 'self';media-src 'none';form-action 'self';""" content_security_policy_template = """scripts-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' $NONCE;object-src 'none';font-src 'self';style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com ws://$ROOT_PATH wss://$ROOT_PATH;manifest-src 'self';media-src 'none';form-action 'self';"""
# Controls if old angular plugins are supported or not. This will be disabled by default in future release # Controls if old angular plugins are supported or not. This will be disabled by default in future release
angular_support_enabled = true angular_support_enabled = true

@ -1,9 +1,9 @@
#!/usr/bin/env bash #!/usr/bin/env bash
cd script ; cd scripts ;
chmod +x *.sh ; chmod +x *.sh ;
./env_check.sh; ./env_check.sh;
cd .. ; cd .. ;
docker-compose up -d; docker-compose up -d;
cd script ; cd scripts ;
./docker_check_service.sh ./docker_check_service.sh

@ -9,11 +9,11 @@ if [ $MINIO_ENDPOINT == "http://127.0.0.1:10005" ]; then
fi fi
cd script ; cd scripts ;
chmod +x *.sh ; chmod +x *.sh ;
./init_pwd.sh ./init_pwd.sh
./env_check.sh; ./env_check.sh;
cd .. ; cd .. ;
docker-compose up -d; docker-compose up -d;
cd script ; cd scripts ;
./docker_check_service.sh ./docker_check_service.sh

@ -1,8 +1,8 @@
#!/usr/bin/env bash #!/usr/bin/env bash
#fixme This script is the total startup script #fixme This scripts is the total startup scripts
#fixme The full name of the shell script that needs to be started is placed in the need_to_start_server_shell array #fixme The full name of the shell scripts that needs to be started is placed in the need_to_start_server_shell array
#fixme Put the shell script name here #fixme Put the shell scripts name here
need_to_start_server_shell=( need_to_start_server_shell=(
start_rpc_service.sh start_rpc_service.sh
msg_gateway_start.sh msg_gateway_start.sh
@ -57,5 +57,3 @@ if [ $success_num == ${#need_to_start_server_shell[*]} ]
then then
echo -e ${YELLOW_PREFIX}"all services build success"${COLOR_SUFFIX} echo -e ${YELLOW_PREFIX}"all services build success"${COLOR_SUFFIX}
fi fi

@ -1,8 +1,8 @@
#!/usr/bin/env bash #!/usr/bin/env bash
#fixme This script is the total startup script #fixme This scripts is the total startup scripts
#fixme The full name of the shell script that needs to be started is placed in the need_to_start_server_shell array #fixme The full name of the shell scripts that needs to be started is placed in the need_to_start_server_shell array
#fixme Put the shell script name here #fixme Put the shell scripts name here
need_to_start_server_shell=( need_to_start_server_shell=(
start_rpc_service.sh start_rpc_service.sh
msg_gateway_start.sh msg_gateway_start.sh

@ -1,8 +1,8 @@
#!/usr/bin/env bash #!/usr/bin/env bash
#fixme This script is the total startup script #fixme This scripts is the total startup scripts
#fixme The full name of the shell script that needs to be started is placed in the need_to_start_server_shell array #fixme The full name of the shell scripts that needs to be started is placed in the need_to_start_server_shell array
#fixme Put the shell script name here #fixme Put the shell scripts name here
need_to_start_server_shell=( need_to_start_server_shell=(
start_rpc_service.sh start_rpc_service.sh
push_start.sh push_start.sh

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
#fixme This script is to stop the service #fixme This scripts is to stop the service
source ./style_info.cfg source ./style_info.cfg
source ./path_info.cfg source ./path_info.cfg

Loading…
Cancel
Save