Greetings, maintainers of community!
When I was learning operating system, I pushed my patch to the master branch for entertainment. But just a few days later, the leader of our team just told me that my arbitrary commit might incur legal risks.Therefore I pushed this patch so that the problem could be fixed. Days after my last e-mail was send, there is still no replies. I mean no offense but I want to know if my message is decent or acceptable in community. ------------------ Original ------------------ From: "Weisson"<hanxiaob...@bupt.edu.cn>; Date: Fri, Jul 2, 2021 05:06 PM To: "virt-tools-list"<virt-tools-list@redhat.com>; Cc: "Weisson"<hanxiaob...@bupt.edu.cn>; Subject: [PATCH] use official product name for alibaba cloud bare-metal instances From: Weisson <hanxiaob...@bupt.edu.cn> --- virt-what.in | 5 +++-- virt-what.pod | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/virt-what.in b/virt-what.in index 520f7b0..6704d9c 100644 --- a/virt-what.in +++ b/virt-what.in @@ -58,6 +58,7 @@ usage () { exit 0 } + # Handle the command line arguments, if any. while test $# -gt 0; do case "$1" in @@ -115,9 +116,9 @@ arch=$(uname -m | sed -e 's/i.86/i386/' | sed -e 's/arm.*/arm/') # Check for Alibaba Cloud if echo "$dmi" | grep -q 'Manufacturer: Alibaba'; then - # Check for Alibaba Cloud X-Dragon Architecture + # Check for Alibaba Cloud ECS Bare Metal (EBM) Instance if ( { echo -e "GET /latest/meta-datainstance/instance-type HTTP/1.0\r\nHost: 100.100.100.200\r\n\r" >&3; grep -sq 'ebm' <&3 ; } 3<> /dev/tcp/100.100.100.200/80 ) 2>/dev/null ; then - echo "alibaba_cloud-x_dragon" + echo "alibaba_cloud-ebm" else echo "alibaba_cloud" fi diff --git a/virt-what.pod b/virt-what.pod index 6e29570..381385b 100644 --- a/virt-what.pod +++ b/virt-what.pod @@ -27,7 +27,7 @@ don't know about or cannot detect. =item B<alibaba_cloud> -=item B<alibaba_cloud-x_dragon> +=item B<alibaba_cloud-ebm> This is a cloud computing service based on Alibaba Cloud. -- 2.24.3 (Apple Git-128)