diff --git a/0004-use-kill-not-kill-INT-when-stop-service.patch b/0004-use-kill-not-kill-INT-when-stop-service.patch new file mode 100644 index 0000000..ea082ee --- /dev/null +++ b/0004-use-kill-not-kill-INT-when-stop-service.patch @@ -0,0 +1,25 @@ +From 55b9f6759bc69c66ac67e18edbad7c6e341b8935 Mon Sep 17 00:00:00 2001 +From: lixin +Date: Fri, 15 Mar 2024 15:36:24 +0800 +Subject: [PATCH] use-kill-not-kill-INT-when-stop-service + +--- + ut-Migration-tools/server/migration-tools-server.service | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/ut-Migration-tools/server/migration-tools-server.service b/ut-Migration-tools/server/migration-tools-server.service +index 6616c5b..b634fa4 100644 +--- a/ut-Migration-tools/server/migration-tools-server.service ++++ b/ut-Migration-tools/server/migration-tools-server.service +@@ -5,7 +5,7 @@ After=network-online.target + [Service] + Type=simple + ExecStart=/usr/bin/python3 /usr/lib/migration-tools-server/index.py +-ExecStop=/bin/kill-INT $MAINPID ++ExecStop=/bin/kill -HUP $MAINPID + + [Install] + WantedBy=multi-user.target +-- +2.33.0 + diff --git a/migration-tools.spec b/migration-tools.spec index 716f0c6..31ae652 100644 --- a/migration-tools.spec +++ b/migration-tools.spec @@ -1,12 +1,13 @@ Name: migration-tools Version: 1.0.0 -Release: 7 +Release: 8 Summary: A tool to help users migrate the Centos system to the UOS system and openEuler system License: MulanPSL-2.0 Source0: ut-Migration-tools.tar.gz Patch0: 0001-fix-export-error-and-no-migration-details-issue.patch Patch1: 0002-fix-uefi-boot-failed.patch Patch2: 0003-modify-grub-rules-to-match-NIC-name.patch +Patch3: 0004-use-kill-not-kill-INT-when-stop-service.patch # CVE patches: >= 100 Patch100: 0001-CVE-2024-24892.patch @@ -34,6 +35,7 @@ Migration software server side %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 # cve patches %patch100 -p1 @@ -57,7 +59,6 @@ cp -r ut-Migration-tools/* $RPM_BUILD_ROOT/usr/lib/migration-tools-server/ %post -n migration-tools-server chmod +x /usr/lib/migration-tools-server/server/start_webview.sh ln -sf /usr/lib/migration-tools-server/server/start_webview.sh /usr/bin/migration-tools -systemctl enable migration-tools-server.service %preun -n migration-tools-server if [ $1 = 0 ];then @@ -65,7 +66,6 @@ if [ $1 = 0 ];then fi %postun -n migration-tools-server -systemctl disable migration-tools-server.service rm -rf /usr/bin/migration-tools %files -n migration-tools-server @@ -74,6 +74,9 @@ rm -rf /usr/bin/migration-tools %{_unitdir}/migration-tools-server.service %changelog +* Thu Mar 14 2024 lixin - 1.0.0-8 +- fix stop service display failed + * Thu Mar 14 2024 lixin - 1.0.0-7 - Fix the error messages that occur during upgrades and downgrades.