- don't force sync io for all filesystems
This commit is contained in:
parent
0e6583ceaa
commit
80ce5e6958
@ -1,6 +1,6 @@
|
|||||||
Name: cyrus-imapd
|
Name: cyrus-imapd
|
||||||
Version: 2.3.16
|
Version: 2.3.16
|
||||||
Release: 6%{?dist}
|
Release: 7%{?dist}
|
||||||
|
|
||||||
%define ssl_pem_file %{_sysconfdir}/pki/%{name}/%{name}.pem
|
%define ssl_pem_file %{_sysconfdir}/pki/%{name}/%{name}.pem
|
||||||
|
|
||||||
@ -307,8 +307,13 @@ rm -rf %{buildroot}
|
|||||||
%post
|
%post
|
||||||
/sbin/chkconfig --add %{name}
|
/sbin/chkconfig --add %{name}
|
||||||
|
|
||||||
# Force synchronous updates, usually only on extX filesystems
|
# Force synchronous updates, usually only on ext2 filesystems
|
||||||
chattr -R +S $i %{_var}/lib/imap/{user,quota} %{_var}/spool/imap 2>/dev/null ||:
|
for i in %{_var}/lib/imap/{user,quota} %{_var}/spool/imap
|
||||||
|
do
|
||||||
|
if [ "$(find $i -maxdepth 0 -printf %%F)" = "ext2" ]; then
|
||||||
|
chattr -R +S $i 2>/dev/null ||:
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
# Create SSL certificates
|
# Create SSL certificates
|
||||||
exec > /dev/null 2> /dev/null
|
exec > /dev/null 2> /dev/null
|
||||||
@ -479,6 +484,9 @@ fi
|
|||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jan 21 2011 Michal Hlavinka <mhlavink@redhat.com> - 2.3.16-7
|
||||||
|
- don't force sync io for all filesystems
|
||||||
|
|
||||||
* Fri Jul 07 2010 Michal Hlavinka <mhlavink@redhat.com> - 2.3.16-6
|
* Fri Jul 07 2010 Michal Hlavinka <mhlavink@redhat.com> - 2.3.16-6
|
||||||
- follow licensing guideline update
|
- follow licensing guideline update
|
||||||
- devel sub-package has to have virtual static provides (#609604)
|
- devel sub-package has to have virtual static provides (#609604)
|
||||||
|
Loading…
Reference in New Issue
Block a user