38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From d0e28ae440b4129eebff1b53d18f42d48ef0156c Mon Sep 17 00:00:00 2001
|
|
From: xuezhixin <xuezhixin@uniontech.com>
|
|
Date: Mon, 13 Nov 2023 14:59:04 +0800
|
|
Subject: [PATCH] =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E8=BD=AF=E4=BB=B6=E5=8C=85?=
|
|
=?UTF-8?q?=E5=92=8C=E4=B8=8B=E8=BD=BD=E7=9A=84=E8=BD=AF=E4=BB=B6=E5=8C=85?=
|
|
=?UTF-8?q?=E5=AF=B9=E5=BA=94?=
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
---
|
|
sysmig_agent/Abisystmcompchk.py | 12 ++++++++++++
|
|
1 file changed, 12 insertions(+)
|
|
|
|
diff --git a/sysmig_agent/Abisystmcompchk.py b/sysmig_agent/Abisystmcompchk.py
|
|
index 0b5c519..eab8322 100644
|
|
--- a/sysmig_agent/Abisystmcompchk.py
|
|
+++ b/sysmig_agent/Abisystmcompchk.py
|
|
@@ -818,3 +818,15 @@ def switch_write_migrate_report(report_name, num, flag):
|
|
with open(abi_incomp_chk, 'r') as fr_incomp:
|
|
column_incomp_list = fr_incomp.readlines()
|
|
write_row_by_row(report_name, column_incomp_list, 2, 0, num)
|
|
+
|
|
+
|
|
+def get_system_unique_pkg(current_pkg_list, download_pkg_list):
|
|
+ # clean history data
|
|
+ if os.path.exists(current_system_unique):
|
|
+ os.remove(current_system_unique)
|
|
+
|
|
+ fcw = open(current_system_unique, 'w')
|
|
+ for data in set(current_pkg_list).difference(set(download_pkg_list)):
|
|
+ fcw.write(data + '\n')
|
|
+ fcw.close()
|
|
+
|
|
--
|
|
2.20.1
|
|
|