
Change-Id: Id7cef7826092e191654da872ee1e11c4c6f50ddf Signed-off-by: Zhijiang Hu <hu.zhijiang@zte.com.cn>
15 lines
244 B
Bash
Executable File
15 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#用于安装daisy使用的全局变量
|
|
|
|
if [ ! "$_INSTALL_GLOBAL_VAR_FILE" ];then
|
|
|
|
database_server_port=5432
|
|
cloudname=daisycloud
|
|
clustername=daisycluster
|
|
debugmode="no"
|
|
message_server=""
|
|
|
|
_INSTALL_GLOBAL_VAR_FILE="install_global_var.sh"
|
|
fi
|