Blame SPECS/cronie.spec

203597
%bcond_without selinux
203597
%bcond_without pam
203597
%bcond_without audit
203597
%bcond_without inotify
203597
203597
Summary:   Cron daemon for executing programs at set times
203597
Name:      cronie
203597
Version:   1.5.7
203597
Release:   5%{?dist}
203597
License:   MIT and BSD and ISC and GPLv2+
203597
URL:       https://github.com/cronie-crond/cronie
203597
Source0:   https://github.com/cronie-crond/cronie/releases/download/cronie-%{version}/cronie-%{version}.tar.gz
203597
203597
Patch:     0001-Address-issues-found-by-coverity-scan.patch
203597
203597
Requires:  dailyjobs
203597
203597
%if %{with selinux}
203597
Requires:      libselinux >= 2.0.64
203597
Buildrequires: libselinux-devel >= 2.0.64
203597
%endif
203597
%if %{with pam}
203597
Requires:      pam >= 1.0.1
203597
Buildrequires: pam-devel >= 1.0.1
203597
%endif
203597
%if %{with audit}
203597
Buildrequires: audit-libs-devel >= 1.4.1
203597
%endif
203597
203597
BuildRequires:    gcc
203597
BuildRequires:    systemd
203597
BuildRequires: make
203597
Obsoletes:        %{name}-sysvinit
203597
203597
Requires(post):   coreutils sed
203597
203597
%if 0%{?fedora} && 0%{?fedora} < 28 || 0%{?rhel} && 0%{?rhel} < 8
203597
%{?systemd_requires}
203597
%else
203597
%{?systemd_ordering} # does not exist on Fedora27/RHEL7
203597
%endif
203597
203597
203597
%description
203597
Cronie contains the standard UNIX daemon crond that runs specified programs at
203597
scheduled times and related tools. It is a fork of the original vixie-cron and
203597
has security and configuration enhancements like the ability to use pam and
203597
SELinux.
203597
203597
%package anacron
203597
Summary:   Utility for running regular jobs
203597
Requires:  crontabs
203597
Provides:  dailyjobs
203597
Provides:  anacron = 2.4
203597
Obsoletes: anacron <= 2.3
203597
Requires(post): coreutils
203597
Requires:  %{name} = %{version}-%{release}
203597
203597
%description anacron
203597
Anacron is part of cronie that is used for running jobs with regular
203597
periodicity which do not have exact time of day of execution.
203597
203597
The default settings of anacron execute the daily, weekly, and monthly
203597
jobs, but anacron allows setting arbitrary periodicity of jobs.
203597
203597
Using anacron allows running the periodic jobs even if the system is often
203597
powered off and it also allows randomizing the time of the job execution
203597
for better utilization of resources shared among multiple systems.
203597
203597
%package noanacron
203597
Summary:   Utility for running simple regular jobs in old cron style
203597
Provides:  dailyjobs
203597
Requires:  crontabs
203597
Requires:  %{name} = %{version}-%{release}
203597
203597
%description noanacron
203597
Old style of running {hourly,daily,weekly,monthly}.jobs without anacron. No
203597
extra features.
203597
203597
%prep
203597
%autosetup -p1
203597
203597
%build
203597
%configure \
203597
%if %{with pam}
203597
--with-pam \
203597
%endif
203597
%if %{with selinux}
203597
--with-selinux \
203597
%endif
203597
%if %{with audit}
203597
--with-audit \
203597
%endif
203597
%if %{with inotify}
203597
--with-inotify \
203597
%endif
203597
--enable-anacron \
203597
--enable-pie \
203597
--enable-relro
203597
203597
%make_build V=2
203597
203597
%install
203597
%make_install DESTMAN=$RPM_BUILD_ROOT%{_mandir}
203597
mkdir -pm700 $RPM_BUILD_ROOT%{_localstatedir}/spool/cron
203597
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/
203597
mkdir -pm755 $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/
203597
%if ! %{with pam}
203597
    rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/crond
203597
%endif
203597
install -m 644 crond.sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/crond
203597
touch $RPM_BUILD_ROOT%{_sysconfdir}/cron.deny
203597
install -m 644 contrib/anacrontab $RPM_BUILD_ROOT%{_sysconfdir}/anacrontab
203597
install -c -m755 contrib/0hourly $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/0hourly
203597
mkdir -pm 755 $RPM_BUILD_ROOT%{_sysconfdir}/cron.hourly
203597
install -c -m755 contrib/0anacron $RPM_BUILD_ROOT%{_sysconfdir}/cron.hourly/0anacron
203597
mkdir -p $RPM_BUILD_ROOT/var/spool/anacron
203597
touch $RPM_BUILD_ROOT/var/spool/anacron/cron.daily
203597
touch $RPM_BUILD_ROOT/var/spool/anacron/cron.weekly
203597
touch $RPM_BUILD_ROOT/var/spool/anacron/cron.monthly
203597
203597
# noanacron package
203597
install -m 644 contrib/dailyjobs $RPM_BUILD_ROOT/%{_sysconfdir}/cron.d/dailyjobs
203597
203597
# install systemd initscript
203597
install -m 644 -D contrib/cronie.systemd $RPM_BUILD_ROOT/usr/lib/systemd/system/crond.service
203597
203597
%post
203597
# run after an installation
203597
%systemd_post crond.service
203597
203597
%post anacron
203597
[ -e /var/spool/anacron/cron.daily ] || touch /var/spool/anacron/cron.daily 2>/dev/null || :
203597
[ -e /var/spool/anacron/cron.weekly ] || touch /var/spool/anacron/cron.weekly 2>/dev/null || :
203597
[ -e /var/spool/anacron/cron.monthly ] || touch /var/spool/anacron/cron.monthly 2>/dev/null || :
203597
203597
%preun
203597
# run before a package is removed
203597
%systemd_preun crond.service
203597
203597
%postun
203597
# run after a package is removed
203597
%systemd_postun_with_restart crond.service
203597
203597
%triggerun -- cronie-anacron < 1.4.1
203597
# empty /etc/crontab in case there are only old regular jobs
203597
cp -a /etc/crontab /etc/crontab.rpmsave
203597
sed -e '/^01 \* \* \* \* root run-parts \/etc\/cron\.hourly/d'\
203597
  -e '/^02 4 \* \* \* root run-parts \/etc\/cron\.daily/d'\
203597
  -e '/^22 4 \* \* 0 root run-parts \/etc\/cron\.weekly/d'\
203597
  -e '/^42 4 1 \* \* root run-parts \/etc\/cron\.monthly/d' /etc/crontab.rpmsave > /etc/crontab
203597
exit 0
203597
203597
%triggerun -- cronie < 1.4.7-2
203597
# Save the current service runlevel info
203597
# User must manually run systemd-sysv-convert --apply crond
203597
# to migrate them to systemd targets
203597
/usr/bin/systemd-sysv-convert --save crond
203597
203597
# The package is allowed to autostart:
203597
/bin/systemctl enable crond.service >/dev/null 2>&1
203597
203597
/sbin/chkconfig --del crond >/dev/null 2>&1 || :
203597
/bin/systemctl try-restart crond.service >/dev/null 2>&1 || :
203597
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
203597
203597
%triggerin -- pam, glibc, libselinux
203597
# changes in pam, glibc or libselinux can make crond crash
203597
# when it calls pam
203597
/bin/systemctl try-restart crond.service >/dev/null 2>&1 || :
203597
203597
%files
203597
%doc AUTHORS README ChangeLog
203597
%{!?_licensedir:%global license %%doc}
203597
%license COPYING
203597
%attr(755,root,root) %{_sbindir}/crond
203597
%attr(4755,root,root) %{_bindir}/crontab
203597
%attr(755,root,root) %{_bindir}/cronnext
203597
%{_mandir}/man8/crond.*
203597
%{_mandir}/man8/cron.*
203597
%{_mandir}/man5/crontab.*
203597
%{_mandir}/man1/crontab.*
203597
%{_mandir}/man1/cronnext.*
203597
%dir %{_localstatedir}/spool/cron
203597
%dir %{_sysconfdir}/cron.d
203597
%if %{with pam}
203597
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/pam.d/crond
203597
%endif
203597
%config(noreplace) %{_sysconfdir}/sysconfig/crond
203597
%config(noreplace) %{_sysconfdir}/cron.deny
203597
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/0hourly
203597
%attr(0644,root,root) /usr/lib/systemd/system/crond.service
203597
203597
%files anacron
203597
%{_sbindir}/anacron
203597
%attr(0755,root,root) %{_sysconfdir}/cron.hourly/0anacron
203597
%config(noreplace) %{_sysconfdir}/anacrontab
203597
%dir /var/spool/anacron
203597
%ghost %attr(0600,root,root) %verify(not md5 size mtime) /var/spool/anacron/cron.daily
203597
%ghost %attr(0600,root,root) %verify(not md5 size mtime) /var/spool/anacron/cron.weekly
203597
%ghost %attr(0600,root,root) %verify(not md5 size mtime) /var/spool/anacron/cron.monthly
203597
%{_mandir}/man5/anacrontab.*
203597
%{_mandir}/man8/anacron.*
203597
203597
%files noanacron
203597
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/dailyjobs
203597
203597
%changelog
203597
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.7-5
203597
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
203597
  Related: rhbz#1991688
203597
203597
* Wed May 12 2021 Jan Staněk <jstanek@redhat.com> - 1.5.7-4
203597
- Install crond.service into /usr/lib
203597
203597
* Fri Apr 30 2021 Jan Staněk <jstanek@redhat.com> - 1.5.7-3
203597
- Address issues found by static scanners
203597
203597
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.7-2
203597
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
203597
203597
* Mon Mar 29 2021 Tomáš Mráz <tmraz@fedoraproject.org> - 1.5.7-1
203597
- new upstream release 1.5.7 with bug fixes and enhancements
203597
203597
* Wed Mar 17 2021 Tomáš Mráz <tmraz@fedoraproject.org> - 1.5.6-1
203597
- new upstream release 1.5.6 with bug fixes and enhancements
203597
203597
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.5-5
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
203597
203597
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.5-4
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
203597
203597
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 1.5.5-3
203597
- Use make macros
203597
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
203597
203597
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.5-2
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
203597
203597
* Thu Oct 31 2019 Tomáš Mráz <tmraz@redhat.com> - 1.5.5-1
203597
- new upstream release 1.5.5 with multiple bug fixes and improvements
203597
203597
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-2
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
203597
203597
* Mon Mar 18 2019 Tomáš Mráz <tmraz@redhat.com> - 1.5.4-1
203597
- new upstream release 1.5.4 with regression fix
203597
203597
* Fri Mar 15 2019 Tomáš Mráz <tmraz@redhat.com> - 1.5.3-1
203597
- new upstream release 1.5.3 fixing CVE-2019-9704 and CVE-2019-9705
203597
203597
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-5
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
203597
203597
* Fri Nov 30 2018 Tomáš Mráz <tmraz@redhat.com> - 1.5.2-4
203597
- Do not hard-require systemd as crond is used in containers without
203597
  systemd (#1654659)
203597
203597
* Wed Oct 31 2018 Tomáš Mráz <tmraz@redhat.com> - 1.5.2-3
203597
- use role from the current context for system crontabs (#1639381)
203597
203597
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-2
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
203597
203597
* Thu May  3 2018 Tomáš Mráz <tmraz@redhat.com> - 1.5.2-1
203597
- new upstream release 1.5.2
203597
203597
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-9
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
203597
203597
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-8
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
203597
203597
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-7
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
203597
203597
* Thu May  4 2017 Tomáš Mráz <tmraz@redhat.com> - 1.5.1-6
203597
- fix Y2038 problems in cron and anacron (#1445136)
203597
203597
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-5
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
203597
203597
* Tue Jan  3 2017 Tomáš Mráz <tmraz@redhat.com> - 1.5.1-4
203597
- make failure of creation of the ghost files in /var non-fatal
203597
203597
* Mon Sep  5 2016 Tomáš Mráz <tmraz@redhat.com> - 1.5.1-3
203597
- on some machines the power supply is named ADP0
203597
203597
* Tue Aug 23 2016 Tomáš Mráz <tmraz@redhat.com> - 1.5.1-2
203597
- query power status directly from kernel
203597
203597
* Thu Jun 23 2016 Tomáš Mráz <tmraz@redhat.com> - 1.5.1-1
203597
- new upstream release
203597
203597
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-4
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
203597
203597
* Mon Jul 13 2015 Tomáš Mráz <tmraz@redhat.com> - 1.5.0-3
203597
- the temp file name used by crontab needs to be ignored by crond
203597
203597
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-2
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
203597
203597
* Thu May 28 2015 Tomáš Mráz <tmraz@redhat.com> - 1.5.0-1
203597
- new upstream release
203597
203597
* Tue Apr 21 2015 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-6
203597
- mark the 0hourly and dailyjobs crontabs as config
203597
- do not add already existing orphan on reload
203597
203597
* Tue Feb  3 2015 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-5
203597
- correct the permissions of the anacron timestamp files
203597
203597
* Fri Jan  2 2015 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-4
203597
- check for NULL pamh on two more places (#1176215)
203597
203597
* Tue Dec  2 2014 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-3
203597
- call PAM only for non-root user or non-system crontabs (#956157)
203597
- bypass the PAM check in crontab for root (#1169175)
203597
203597
* Tue Nov  4 2014 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-2
203597
- refresh user entries when jobs are run
203597
203597
* Wed Sep 17 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.12-1
203597
- new release 1.4.12
203597
- remove gpl2 license, because it's part of upstream COPYING now
203597
203597
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-9
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
203597
203597
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 1.4.11-8
203597
- fix license handling
203597
203597
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-7
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
203597
203597
* Wed Apr 30 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-6
203597
- unwanted fd could make trouble to SElinux 1075106
203597
203597
* Thu Jan 16 2014 Ville Skyttä <ville.skytta@iki.fi> - 1.4.11-5
203597
- Drop INSTALL from docs, fix rpmlint tabs vs spaces warning.
203597
203597
* Wed Sep 25 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-4
203597
- some jobs are not executed because not all environment variables are set 995590
203597
- cronie's systemd script use "KillMode=process" 919290
203597
203597
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-3
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
203597
203597
* Mon Jul 22 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-2
203597
- scriptlets are not created correctly if systemd is not in BR 986698
203597
- remove sub-package sysvinit, which is not needed anymore
203597
- update license, anacron is under GPLv2+
203597
203597
* Thu Jul 18 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-1
203597
- new release 1.4.11 (contains previous bug fixes from 1.4.10-5)
203597
203597
* Tue Jun 11 2013 Tomáš Mráz <tmraz@redhat.com> - 1.4.10-5
203597
- add support for RANDOM_DELAY - delaying job startups
203597
- pass some environment variables to processes (LANG, etc.) (#969761)
203597
- do not use putenv() with string literals (#971516)
203597
203597
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.10-4
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
203597
203597
* Wed Jan  2 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.10-3
203597
- change configuration files to 644
203597
- change 6755 to 4755 for crontab binary
203597
203597
* Tue Nov 27 2012 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.10-1
203597
- New release 1.4.10
203597
203597
* Thu Nov 22 2012 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.9-1
203597
- New release 1.4.9
203597
203597
* Wed Sep 05 2012 Václav Pavlín <vpavlin@redhat.com> - 1.4.8-13
203597
- Scriptlets replaced with new systemd macros (#850070)
203597
203597
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-12
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
203597
203597
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-11
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
203597
203597
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-10
203597
- Rebuilt for glibc bug#747377
203597
203597
* Tue Oct 25 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-9
203597
- make crond run a little bit later in the boot process (#747759)
203597
203597
* Mon Oct 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.8-8
203597
- change triggerun to fix 735802 during upgrade
203597
203597
* Wed Jul 27 2011 Karsten Hopp <karsten@redhat.com> 1.4.8-7
203597
- rebuild again, ppc still had the broken rpm in the buildroots
203597
203597
* Thu Jul 21 2011 Rex Dieter <rdieter@fedoraproject.org> 1.4.8-6
203597
- rebuild (broken rpm in buildroot)
203597
203597
* Thu Jul 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.8-5
203597
- fix permission of init.d/crond
203597
203597
* Thu Jun 30 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-4
203597
- drop the without systemd build condition
203597
- add the chkconfig readding trigger to the sysvinit subpackage
203597
203597
* Wed Jun 29 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-3
203597
- start crond after auditd
203597
203597
* Wed Jun 29 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-2
203597
- fix inotify support to not leak fds (#717505)
203597
203597
* Tue Jun 28 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.8-1
203597
- update to 1.4.8
203597
- create sub-package sysvinit for initscript
203597
203597
* Mon May  9 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.7-3
203597
- missing requirement on systemd-sysv for scriptlets
203597
203597
* Thu May 05 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.7-2
203597
- use only systemd units with systemd
203597
- add trigger for restart on glibc, libselinux or pam upgrades (#699189)
203597
203597
* Tue Mar 15 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.7-1
203597
- new release 1.4.7
203597
203597
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.6-9
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
203597
203597
* Mon Jan 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-8
203597
- enable crond even with systemctl
203597
203597
* Thu Dec 16 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-7
203597
- 663193 rewritten selinux support
203597
203597
* Wed Dec 15 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-6
203597
- apply selinux patch from dwalsh
203597
203597
* Fri Dec 10 2010 Tomas Mraz <tmraz@redhat.com> - 1.4.6-5
203597
- do not lock jobs that fall out of allowed range - 661966
203597
203597
* Thu Dec 02 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-4
203597
- fix post (thanks plautrba for review)
203597
203597
* Tue Nov 30 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-3
203597
- systemd init script 617320
203597
203597
* Tue Nov 30 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-2
203597
- fix typos in man pages
203597
203597
* Fri Oct 22 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-1
203597
- update to 1.4.6
203597
203597
* Fri Aug 13 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.5-4
203597
- 623908 fix fd leak in anacron, which caused denail of prelink 
203597
  and others
203597
203597
* Mon Aug  9 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.5-2
203597
- remove sendmail from requirements. If it's not installed, it will
203597
 log into (r)syslog.
203597
203597
* Mon Aug  2 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.5-1
203597
- update to new release
203597
203597
* Fri Feb 19 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.4-1
203597
- update to new release
203597
203597
* Mon Feb 15 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.3-3
203597
- 564894 FTBFS DSOLinking
203597
203597
* Thu Nov  5 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.3-2
203597
- 533189 pam needs add a line and selinux needs defined one function
203597
203597
* Fri Oct 30 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.3-1
203597
- 531963 and 532482 creating noanacron package
203597
203597
* Mon Oct 19 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.2-2
203597
- 529632 service crond stop returns appropriate value
203597
203597
* Mon Oct 12 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.2-1
203597
- new release
203597
203597
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.4.1-3
203597
- rebuilt with new audit
203597
203597
* Fri Aug 14 2009 Tomas Mraz <tmraz@redhat.com> - 1.4.1-2
203597
- create the anacron timestamps in correct post script
203597
203597
* Fri Aug 14 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.1-1
203597
- update to 1.4.1
203597
- create and own /var/spool/anacron/cron.{daily,weekly,monthly} to
203597
 remove false warning about non existent files
203597
- Resolves: 517398
203597
203597
* Wed Aug  5 2009 Tomas Mraz <tmraz@redhat.com> - 1.4-4
203597
- 515762 move anacron provides and obsoletes to the anacron subpackage
203597
203597
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-3
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
203597
203597
* Mon Jul 20 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4-2
203597
- merge cronie and anacron in new release of cronie
203597
- obsolete/provide anacron in spec
203597
203597
* Thu Jun 18 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.3-2
203597
- 506560 check return value of access
203597
203597
* Mon Apr 27 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.3-1
203597
- new release
203597
203597
* Fri Apr 24 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-8
203597
- 496973 close file descriptors after exec
203597
203597
* Mon Mar  9 2009 Tomas Mraz <tmraz@redhat.com> - 1.2-7
203597
- rebuild
203597
203597
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-6
203597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
203597
203597
* Tue Dec 23 2008 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-5
203597
- 477100 NO_FOLLOW was removed, reload after change in symlinked
203597
  crontab is needed, man updated.
203597
203597
* Fri Oct 24 2008 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-4
203597
- update init script
203597
203597
* Thu Sep 25 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-3
203597
- add sendmail file into requirement, cause it's needed some MTA
203597
203597
* Thu Sep 18 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-2
203597
- 462252  /etc/sysconfig/crond does not need to be executable 
203597
203597
* Thu Jun 26 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-1
203597
- update to 1.2
203597
203597
* Tue Jun 17 2008 Tomas Mraz <tmraz@redhat.com> - 1.1-3
203597
- fix setting keycreate context
203597
- unify logging a bit
203597
- cleanup some warnings and fix a typo in TZ code
203597
- 450993 improve and fix inotify support
203597
203597
* Wed Jun  4 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.1-2
203597
- 49864 upgrade/update problem. Syntax error in spec.
203597
203597
* Wed May 28 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.1-1
203597
- release 1.1
203597
203597
* Tue May 20 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-6
203597
- 446360 check for lock didn't call chkconfig
203597
203597
* Tue Feb 12 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-5
203597
- upgrade from less than cronie-1.0-4 didn't add chkconfig
203597
203597
* Wed Feb  6 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-4
203597
- 431366 after reboot wasn't cron in chkconfig
203597
203597
* Tue Feb  5 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-3
203597
- 431366 trigger part => after update from vixie-cron on cronie will 
203597
  be daemon running.
203597
203597
* Wed Jan 30 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-2
203597
- change the provides on higher version than obsoletes
203597
203597
* Tue Jan  8 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-1
203597
- packaging cronie
203597
- thank's for help with packaging to my reviewers