openGauss工具、内核版本改为1.0.1

This commit is contained in:
zhang_xubo 2020-09-28 14:49:05 +08:00
parent 1b99188dee
commit 149bb23a6a
9 changed files with 10 additions and 10 deletions

View File

@ -397,7 +397,7 @@ https://opengauss.org/zh/
From the following website, you can obtain the binarylibs we have compiled. Please unzip it and rename to **binarylibs** after you download.
https://opengauss.obs.cn-south-1.myhuaweicloud.com/1.0.0/openGauss-third_party_binarylibs.tar.gz
https://opengauss.obs.cn-south-1.myhuaweicloud.com/1.0.1/openGauss-third_party_binarylibs.tar.gz
Now we have completed openGauss code. For example, we store it in following directories.

View File

@ -398,7 +398,7 @@ https://opengauss.org/zh/
可以通过以下网站获取编译好的binarylibs。下载后请解压缩并重命名为**binarylibs**。
https://opengauss.obs.cn-south-1.myhuaweicloud.com/1.0.0/openGauss-third_party_binarylibs.tar.gz
https://opengauss.obs.cn-south-1.myhuaweicloud.com/1.0.1/openGauss-third_party_binarylibs.tar.gz
现在我们已经拥有完整的openGauss代码把它存储在以下目录中以sda为例

2
configure vendored
View File

@ -2651,7 +2651,7 @@ else
if test "$enable_multiple_nodes" = yes; then
default_gs_version="(GaussDB Kernel V500R001C00 build $gitversion) compiled at `date -d today +\"%Y-%m-%d %H:%M:%S\"` commit $commits last mr $mrid $debug_str"
else
default_gs_version="(openGauss 1.0.0 build $gitversion) compiled at `date -d today +\"%Y-%m-%d %H:%M:%S\"` commit $commits last mr $mrid $debug_str"
default_gs_version="(openGauss 1.0.1 build $gitversion) compiled at `date -d today +\"%Y-%m-%d %H:%M:%S\"` commit $commits last mr $mrid $debug_str"
fi
fi

View File

@ -54,7 +54,7 @@ int main(int argc, char* argv[])
exit(0);
}
if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0) {
puts("pg_check_replslot V1.0.0");
puts("pg_check_replslot V1.0.1");
exit(0);
}
}

View File

@ -116,12 +116,12 @@ SCRIPT_DIR=$(cd $(dirname $SCRIPT_PATH) && pwd)
package_path=$SCRIPT_DIR
#######################################################################
##version 1.0.0
##version 1.0.1
#######################################################################
function read_srv_version()
{
cd $SCRIPT_DIR
version_number='1.0.0'
version_number='1.0.1'
echo "${server_name_for_package}-${version_number}">version.cfg
#auto read the number from kernal globals.cpp, no need to change it here
}

View File

@ -292,7 +292,7 @@ static void show_version(int alls)
if (alls) {
printf("VERSION = ");
}
printf("openGauss 1.0.0\n");
printf("openGauss 1.0.1\n");
}
/*

View File

@ -22,7 +22,7 @@ from algorithms.pso import Pso
from db_env import DB_Env
from utils import SysLogger, Recorder
__version__ = '1.0.0'
__version__ = '1.0.1'
"""The following are preset parameters,
and it is not recommended to modify for green hands unless you have any special purpose."""

View File

@ -22,7 +22,7 @@ usergroup="dbgrp"
envfilepath="${workdir}/om/env1"
logfilesavepath=/home/OM/log
upgradefilepath=${workdir}/openGauss/package/${upgradepackage}
package_path=/home/openGauss-1.0.0-CentOS-b109-64bit.tar.gz
package_path=/home/openGauss-1.0.1-CentOS-b109-64bit.tar.gz
shellfilepath=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
# 用户校验
checkUser()

View File

@ -21,7 +21,7 @@ password=`cat ${xmlpath} |grep -w "password"|awk -F'"' '{print $4}'`
usergroup="dbgrp"
envfilepath="${workspace}/om/env"
logfilesavepath=/usr1/opengaussautoinstall/log
package_path=${workspace}/openGauss/package/openGauss-1.0.0-CentOS-64bit.tar.gz
package_path=${workspace}/openGauss/package/openGauss-1.0.1-CentOS-64bit.tar.gz
shellfilepath=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
hostname=`hostname`
ip=`hostname -i|awk '{print $1}'`