detection basic system information

This commit is contained in:
xuezhixin 2024-11-07 17:05:00 +08:00
parent 078b04f4d7
commit 12e275899e
2 changed files with 50 additions and 1 deletions

View File

@ -0,0 +1,45 @@
From be2eee80486e06dc4cfe097fa10d2254df5800c4 Mon Sep 17 00:00:00 2001
From: xuezhixin <xuezhixin@uniontech.com>
Date: Mon, 13 Nov 2023 14:00:33 +0800
Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E6=A3=80=E6=B5=8B=E7=9A=84?=
=?UTF-8?q?=E7=B3=BB=E7=BB=9F=E5=9F=BA=E7=A1=80=E4=BF=A1=E6=81=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
sysmig_agent/Abisystmcompchk.py | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/sysmig_agent/Abisystmcompchk.py b/sysmig_agent/Abisystmcompchk.py
index 913fef1..43a4594 100644
--- a/sysmig_agent/Abisystmcompchk.py
+++ b/sysmig_agent/Abisystmcompchk.py
@@ -546,3 +546,24 @@ def get_cur_sys_version():
fp.close()
return line.split('=', 1)[1].replace('"', '').replace('\n', '')
+
+def get_migration_sys_info():
+
+ behind_sys_info = exp_rst_dir + 'before-system-info.txt'
+ with open(behind_sys_info, 'r') as file_object:
+ behind_list_info = file_object.readlines()
+
+ migration_sys_info = '1|2|' + get_cur_sys_version()
+ behind_list_info.append(migration_sys_info)
+
+ #20220107 modify lihp: get kernel version
+ #migration_kernel_verison = '2|2|' + platform.release()
+ migration_kernel_verison = '2|2|' + platform_release('1')
+ behind_list_info.append(migration_kernel_verison)
+
+ with open(migration_system_install, 'r') as frm:
+ install_pkgs_num = str(len(frm.readlines()))
+ behind_list_info.append('8|2|' + install_pkgs_num)
+
+ return behind_list_info
+
--
2.20.1

View File

@ -1,6 +1,6 @@
Name: migration-tools
Version: 1.0.2
Release: 73
Release: 74
License: MulanPSL-2.0
Summary: A tool to help users migrate the Centos system to the UOS system and openEuler system
Source0: %{name}-%{version}.tar.gz
@ -80,6 +80,7 @@ Patch70: 0070-interface-for-obtaining-repo-interface.patch
Patch71: 0071-get-package-list-from-repository.patch
Patch72: 0072-count-the-total-number-of-abi-compatible-lists.patch
Patch73: 0073-get-os-version-and-os-id.patch
Patch74: 0074-detection-basic-system-information.patch
BuildArch: noarch
@ -179,6 +180,9 @@ rm -rf /usr/bin/migration-tools
%endif
%changelog
* Tue Nov 5 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-74
- 0074-detection-basic-system-information.patch
* Tue Nov 5 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-73
- 0073-get-os-version-and-os-id.patch