代码拉取完成,页面将自动刷新
同步操作将从 openGauss/openGauss-connector-jdbc 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/bash
# *************************************************************************
# Copyright: (c) Huawei Technologies Co., Ltd. 2019. All rights reserved
#
# description: Acording plat form, get the string info, like "redhat6.4_x86_64".
# return: $plat_form_str : we support the platform and put out $plat_form_str
# "Failed" : the plat form, not supported
# date: 2015-8-22
# version: 1.0
#
# *************************************************************************
set -e
##############################################################################################
# common paremeters:
# lsb_release and uname both suit almost all linux platform, including Redhat,CentOS,SuSE,Debian and so on.
##############################################################################################
# get os name
kernel=""
if [ -f "/etc/euleros-release" ]
then
kernel=$(cat /etc/euleros-release | awk -F ' ' '{print $1}' | tr A-Z a-z)
else
kernel=$(lsb_release -d | awk -F ' ' '{print $2}'| tr A-Z a-z)
fi
## to solve kernel="name=openeuler"
if echo $kernel | grep -q 'openeuler'
then
kernel="openeuler"
fi
# get cpu bit
cpu_bit=$(uname -p)
# the result info
plat_form_str=""
##################################################################################
# redhat platform
# the result form like this: redhat6.4_x86_64
##################################################################################
if [ "$kernel"x = "red"x ]
then
plat_form_str=redhat6.4_"$cpu_bit"
fi
##################################################################################
# fedora platform
# the result form like this: redhat6.4_x86_64
##################################################################################
if [ "$kernel"x = "fedora"x ]
then
plat_form_str=redhat6.4_"$cpu_bit"
fi
##################################################################################
# suse platform
# the result form like this: suse11_sp1_x86_64
##################################################################################
if [ "$kernel"x = "suse"x ]
then
version=$(lsb_release -r | awk -F ' ' '{print $2}')
if [ "$version"x = "12"x ]
then
plat_form_str=suse12_"$cpu_bit"
else
plat_form_str=suse11_sp1_"$cpu_bit"
fi
fi
##################################################################################
# euler platform
# the result form like this: euleros2.0_sp8_aarch64
##################################################################################
if [ "$kernel"x = "euleros"x ]
then
version=$(cat /etc/euleros-release | awk -F '(' '{print $2}'| awk -F ')' '{print $1}' | tr A-Z a-z)
plat_form_str=euleros2.0_"$version"_"$cpu_bit"
fi
##################################################################################
# deepin platform
# the result form like this: deepin_aarch64
##################################################################################
if [ "$kernel"x = "deepin"x ]
then
if [ X"$cpu_bit" = X"unknown" ]
then
cpu_bit=$(uname -m)
fi
plat_form_str=deepin15.2_"$cpu_bit"
fi
##################################################################################
# centos7.6_x86_64 platform
# centos7.5+aarch64 platform
# the result form like this: centos7.6_x86_64 or centos_7.5_aarch64
##################################################################################
if [ "$kernel"x = "centos"x ]
then
if [ X"$cpu_bit" = X"aarch64" ]
then
plat_form_str=centos_7.5_aarch64
else
plat_form_str=centos7.6_"$cpu_bit"
fi
fi
##################################################################################
# openeuler platform
# the result form like this: openeuler_aarch64
##################################################################################
if [ "$kernel"x = "openeuler"x ]
then
plat_form_str=openeuler_"$cpu_bit"
fi
##################################################################################
#
# other platform
#
##################################################################################
if [ -z "$plat_form_str" ]
then
echo "Failed"
else
echo $plat_form_str
fi
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。