From 9b9869cf362ddb82fbb893757d84d02d458e44ec Mon Sep 17 00:00:00 2001 From: tigro Date: Fri, 19 Jan 2024 15:57:29 +0300 Subject: [PATCH] bump retries count --- SOURCES/0001-Backport-dracut-chroot-umount-fix.patch | 2 +- SPECS/lorax.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/SOURCES/0001-Backport-dracut-chroot-umount-fix.patch b/SOURCES/0001-Backport-dracut-chroot-umount-fix.patch index fb2c5b5..a914d5c 100644 --- a/SOURCES/0001-Backport-dracut-chroot-umount-fix.patch +++ b/SOURCES/0001-Backport-dracut-chroot-umount-fix.patch @@ -25,7 +25,7 @@ index d713e4c..80e8c2f 100644 - runcmd(["umount", self.root + d ]) + # In case parallel building of two or more images + # some mounts in /var/tmp/lorax can be busy at the moment of unmounting -+ umount(self.root + d, maxretry=10, retrysleep=5, delete=False) ++ umount(self.root + d, maxretry=200, retrysleep=5, delete=False) def Run(self, args): runcmd(["dracut"] + args, root=self.root) diff --git a/SPECS/lorax.spec b/SPECS/lorax.spec index cfcc0d9..fdda153 100644 --- a/SPECS/lorax.spec +++ b/SPECS/lorax.spec @@ -4,7 +4,7 @@ Name: lorax Version: 34.9.23 -Release: 1%{?dist}.inferit.1 +Release: 1%{?dist}.inferit.2 Summary: Tool for creating the anaconda install images License: GPLv2+ @@ -194,6 +194,9 @@ make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install %{_datadir}/lorax/templates.d/* %changelog +* Fri Jan 19 2024 Arkady L. Shane - 34.9.23-1.inferit.2 +- bump retries count + * Wed Jul 26 2023 Eugene Zamriy - 34.9.20-1.inferit.1 - templates: Fixed UTF-8 handling in replace command - templates: Added iconv command to convert from UTF-8 to another encoding