209 lines
6.5 KiB
RPMSpec
209 lines
6.5 KiB
RPMSpec
Name: migration-tools
|
|
Version: 1.0.2
|
|
Release: 16
|
|
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
|
|
Source1: requires.tar.gz
|
|
Source2: xlwt-1.3.0-py2.py3-none-any.whl
|
|
# patches
|
|
Patch0: 0001-format-code.patch
|
|
Patch1: 0002-modify-excel-report-content.patch
|
|
Patch2: 0003-delete-redundant-code.patch
|
|
Patch3: 0004-connect-sql-function.patch
|
|
Patch4: 0005-execution-sql-function.patch
|
|
Patch5: 0006-add-loger-interface-function.patch
|
|
Patch6: 0007-add-function-to-import-machine.patch
|
|
Patch7: 0008-add-agent_info-table-in-database.patch
|
|
Patch8: 0009-add-task_stream-table-in-database.patch
|
|
Patch10: 0010-create-task-stream-interface.patch
|
|
Patch11: 0011-replace-agent-with-func-diractory.patch
|
|
Patch12: 0012-add-agent_task-in-database.patch
|
|
Patch13: 0013-display-agent-host-information.patch
|
|
Patch14: 0014-modify-task-stream-interface.patch
|
|
Patch15: 0015-delete-host-information-interface.patch
|
|
Patch16: 0016-get-local-ip-on-the-agent.patch
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: systemd
|
|
%description
|
|
UOS Migration Software
|
|
|
|
%if 0%{?rhel} >= 7
|
|
%package -n migration-tools-agent
|
|
Summary: migration-tools-agent
|
|
License: MulanPSL-2.0
|
|
Requires: dnf
|
|
Requires: libabigail
|
|
Requires: python3
|
|
Requires: python3-flask
|
|
Requires: python3-paramiko
|
|
Requires: python3-requests
|
|
Requires: python3-xlrd
|
|
Requires: python3-xlwt
|
|
Requires: openssl
|
|
Requires: rsync
|
|
Requires: yum-utils
|
|
|
|
%description -n migration-tools-agent
|
|
Migration software agent side
|
|
%endif
|
|
|
|
%package -n migration-tools-server
|
|
Summary: migration-tools-server
|
|
License: MulanPSL-2.0
|
|
Requires: python3
|
|
Requires: python3-pip
|
|
Requires: python3-paramiko
|
|
Requires: python3-flask
|
|
Requires: python3-requests
|
|
|
|
%description -n migration-tools-server
|
|
Migration software server side
|
|
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
|
|
%if 0%{?openEuler}
|
|
mkdir -p agent-requires/
|
|
cp -f %SOURCE1 agent-requires/
|
|
cp -f %SOURCE2 agent-requires/
|
|
%endif
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
mkdir -p $RPM_BUILD_ROOT/usr/lib/migration-tools-server
|
|
mkdir -p $RPM_BUILD_ROOT/var/tmp/uos-migration
|
|
mkdir -p $RPM_BUILD_ROOT/etc/migration-tools
|
|
mkdir -p $RPM_BUILD_ROOT%{_unitdir}
|
|
%{__cp} -r * $RPM_BUILD_ROOT/usr/lib/migration-tools-server/
|
|
|
|
|
|
%if 0%{?rhel} >= 7
|
|
mkdir -p $RPM_BUILD_ROOT/usr/lib/migration-tools-agent
|
|
%{__cp} -r * $RPM_BUILD_ROOT/usr/lib/migration-tools-agent/
|
|
|
|
%{__cp} -r $RPM_BUILD_ROOT/usr/lib/migration-tools-server/server/migration-tools-agent.service $RPM_BUILD_ROOT%{_unitdir}
|
|
%endif
|
|
|
|
# Install server config
|
|
%{__cp} -r $RPM_BUILD_ROOT/usr/lib/migration-tools-server/server/uos-sysmig.conf $RPM_BUILD_ROOT/etc/migration-tools
|
|
%{__cp} -r $RPM_BUILD_ROOT/usr/lib/migration-tools-server/server/migration-tools-server.service $RPM_BUILD_ROOT%{_unitdir}
|
|
|
|
%posttrans
|
|
%{_bindir}/systemctl daemon-reload
|
|
|
|
%post -n migration-tools-server
|
|
pip3 install /usr/lib/migration-tools-server/agent-requires/xlwt-1.3.0-py2.py3-none-any.whl --no-cache-dir
|
|
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
|
|
|
|
%preun -n migration-tools-server
|
|
if [ $1 = 0 ];then
|
|
systemctl stop migration-tools-server.service
|
|
fi
|
|
|
|
%postun -n migration-tools-server
|
|
rm -rf /usr/bin/migration-tools
|
|
|
|
%files -n migration-tools-server
|
|
/etc/migration-tools
|
|
/usr/lib/migration-tools-server
|
|
%{_unitdir}/migration-tools-server.service
|
|
|
|
%if 0%{?rhel} >= 7
|
|
%files -n migration-tools-agent
|
|
/etc/migration-tools
|
|
/usr/lib/migration-tools-agent
|
|
%{_unitdir}/migration-tools-agent.service
|
|
%endif
|
|
|
|
%changelog
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-16
|
|
- 0016-get-local-ip-on-the-agent.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-15
|
|
- 0015-delete-host-information-interface.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-14
|
|
- 0014-modify-task-stream-interface.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-13
|
|
- 0013-display-agent-host-information.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-12
|
|
- 0012-add-agent_task-in-database.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-11
|
|
- 0011-replace-agent-with-func-diractory.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-10
|
|
- 0010-create-task-stream-interface.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-9
|
|
- 0009-add-task_stream-table-in-database.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-8
|
|
- 0008-add-agent_info-table-in-database.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-7
|
|
- 0007-add-function-to-import-machine.patch
|
|
|
|
* Mon Nov 4 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-6
|
|
- 0006-add-loger-interface-function.patch
|
|
|
|
* Fri Nov 1 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-5
|
|
- add 0005-execution-sql-function.patch
|
|
|
|
* Fri Nov 1 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-4
|
|
- add 0004-connect-sql-function.patch
|
|
|
|
* Fri Nov 1 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-3
|
|
- add 0003-delete-redundant-code.patch
|
|
|
|
* Fri Nov 1 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-2
|
|
- add 0002-modify-excel-report-content.patch
|
|
|
|
* Thu Oct 31 2024 xuezhixin <xuezhixin@uniontech.com> - 1.0.2-1
|
|
- add 0001-stander-code.patch
|
|
|
|
* Tue Aug 27 2024 lihaipeng <lihaipeng@uniontech.com> - 1.0.1-7
|
|
- fix cancel button function in tool
|
|
|
|
* Tue Jul 09 2024 Wenhua Huang <huangwenhua@kylinos.cn> - 1.0.1-6
|
|
- add BuildRequires systemd
|
|
|
|
* Tue Apr 02 2024 lixin <lixinb@uniontech.com> - 1.0.1-5
|
|
- adjust the display sequence
|
|
|
|
* Mon Apr 01 2024 lixin <lixinb@uniontech.com> - 1.0.1-4
|
|
- modify description
|
|
|
|
* Mon Mar 18 2024 lixin <lixinb@uniontech.com> - 1.0.1-3
|
|
- fix stop service display failed
|
|
- update spec
|
|
|
|
* Mon Mar 11 2024 lixin <lixinb@uniontech.com> - 1.0.1-2
|
|
- fix : CVE-2024-24892
|
|
- use paramiko instead of sshpass to export migration log
|
|
- and data
|
|
|
|
* Tue Mar 05 2024 lixin <lixinb@uniontech.com> - 1.0.1-1
|
|
- Supports migrations to OpenEuler system using the web-based interface.
|
|
|
|
* Wed Sep 06 2023 lixin <lixinb@uniontech.com> - 1.0.0-4
|
|
- fix: fix uefi boot failed
|
|
- fix: modify grub rules to match NIC name after migration
|
|
|
|
* Tue Aug 22 2023 lixin <lixinb@uniontech.com> - 1.0.0-3
|
|
- feat: add aarch64 agent package
|
|
|
|
* Mon Aug 21 2023 lixin <lixinb@uniontech.com> - 1.0.0-2
|
|
- fix export log and migration report error
|
|
- fix no migration detail error
|
|
|
|
* Wed Aug 16 2023 lixin <lixinb@uniontech.com> - 1.0.0-1
|
|
init
|