From 8a0a05e1d50edb0c4dcc5f23cc10ef79c246cf24 Mon Sep 17 00:00:00 2001 From: Michal Hlavinka Date: Wed, 6 Jul 2022 21:43:40 +0200 Subject: [PATCH] fix possible nonzero return value of postinst script(#2053368) Resolves: #2053368 --- dovecot.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dovecot.spec b/dovecot.spec index 524fa49..d402f62 100644 --- a/dovecot.spec +++ b/dovecot.spec @@ -6,7 +6,7 @@ Name: dovecot Epoch: 1 Version: 2.3.16 %global prever %{nil} -Release: 5%{?dist} +Release: 6%{?dist} #dovecot itself is MIT, a few sources are PD, pigeonhole is LGPLv2 License: MIT and LGPLv2 @@ -290,7 +290,7 @@ install -d -m 0755 -g dovecot -d /run/dovecot install -d -m 0755 -d /run/dovecot/empty install -d -m 0750 -g dovenull -d /run/dovecot/login install -d -m 0750 -g dovenull -d /run/dovecot/token-login -[ -x /sbin/restorecon ] && /sbin/restorecon -R /run/dovecot +[ -x /sbin/restorecon ] && /sbin/restorecon -R /run/dovecot ||: %preun if [ $1 = 0 ]; then @@ -466,6 +466,9 @@ make check %{_libdir}/%{name}/dict/libdriver_pgsql.so %changelog +* Wed Jul 06 2022 Michal Hlavinka - 1:2.3.16-6 +- fix possible nonzero return value of postinst script(#2053368) + * Tue Jul 05 2022 Michal Hlavinka - 1:2.3.16-5 - workaround sysuers macro defficiency (#2095399)