304494
%bcond_without selinux
304494
%bcond_without pam
304494
%bcond_without audit
304494
%bcond_without inotify
304494
304494
Summary:   Cron daemon for executing programs at set times
304494
Name:      cronie
304494
Version:   1.4.11
304494
Release:   23%{?dist}
304494
License:   MIT and BSD and ISC and GPLv2+
304494
Group:     System Environment/Base
304494
URL:       https://github.com/cronie-crond/cronie
304494
Source0:   https://github.com/cronie-crond/cronie/releases/download/cronie-%{version}/cronie-%{version}.tar.gz
304494
304494
Patch0:    cronie-systemd.patch
304494
Patch1:    cronie-1.4.11-fcntl_locking.patch
304494
Patch2:    cronie-1.4.11-pamenv.patch
304494
Patch3:    cronie-1.4.11-man-debug.patch
304494
Patch4:    cronie-check-config-param.patch
304494
Patch5:    cronie-unitfile.patch
304494
Patch6:    cronie-1.4.11-refresh-users.patch
304494
Patch7:    cronie-1.4.11-shutdown-msg.patch
304494
Patch8:    cronie-1.4.11-temp-name.patch
304494
Patch9:    cronie-1.4.11-anacron-mailto.patch
304494
Patch10:   cronie-1.4.11-crontab-root.patch
304494
Patch11:   cronie-1.4.11-man-file.patch
304494
Patch12:   cronie-1.4.11-selinux-user.patch
304494
Patch13:   cronie-1.4.11-no-pam.patch
304494
Patch14:   cronie-1.4.11-empty-var.patch
304494
Patch15:   cronie-1.4.11-race-on-crontab-modification.patch
304494
Patch16:   cronie-1.4.11-inherit-path.patch
304494
Patch17:   cronie-1.4.11-smartcard-auth.patch
304494
Patch18:   cronie-1.4.11-restart-on-failure.patch
304494
304494
Requires:  dailyjobs
304494
304494
%if %{with selinux}
304494
Requires:      libselinux >= 2.0.64
304494
Buildrequires: libselinux-devel >= 2.0.64
304494
%endif
304494
%if %{with pam}
304494
Requires:      pam >= 1.0.1
304494
Buildrequires: pam-devel >= 1.0.1
304494
%endif
304494
%if %{with audit}
304494
Buildrequires: audit-libs-devel >= 1.4.1
304494
%endif
304494
304494
BuildRequires:    systemd
304494
Obsoletes:        %{name}-sysvinit
304494
304494
Requires(post):   coreutils sed
304494
Requires(post):   systemd
304494
Requires(preun):  systemd
304494
Requires(postun): systemd
304494
Requires(post):   systemd
304494
304494
%description
304494
Cronie contains the standard UNIX daemon crond that runs specified programs at
304494
scheduled times and related tools. It is a fork of the original vixie-cron and
304494
has security and configuration enhancements like the ability to use pam and
304494
SELinux.
304494
304494
%package anacron
304494
Summary:   Utility for running regular jobs
304494
Requires:  crontabs
304494
Group:     System Environment/Base
304494
Provides:  dailyjobs
304494
Provides:  anacron = 2.4
304494
Obsoletes: anacron <= 2.3
304494
Requires(post): coreutils
304494
Requires:  %{name} = %{version}-%{release}
304494
304494
%description anacron
304494
Anacron is part of cronie that is used for running jobs with regular
304494
periodicity which do not have exact time of day of execution.
304494
304494
The default settings of anacron execute the daily, weekly, and monthly
304494
jobs, but anacron allows setting arbitrary periodicity of jobs.
304494
304494
Using anacron allows running the periodic jobs even if the system is often
304494
powered off and it also allows randomizing the time of the job execution
304494
for better utilization of resources shared among multiple systems.
304494
304494
%package noanacron
304494
Summary:   Utility for running simple regular jobs in old cron style
304494
Group:     System Environment/Base
304494
Provides:  dailyjobs
304494
Requires:  crontabs
304494
Requires:  %{name} = %{version}-%{release}
304494
304494
%description noanacron
304494
Old style of running {hourly,daily,weekly,monthly}.jobs without anacron. No
304494
extra features.
304494
304494
%prep
304494
%setup -q
304494
%patch0 -p1 -b .systemd
304494
%patch1 -p1 -b .locking
304494
%patch2 -p1 -b .pamenv
304494
%patch3 -p1 -b .man-debug
304494
%patch4 -p1 -b .check-config
304494
%patch5 -p1 -b .unitfile
304494
%patch6 -p1 -b .refresh-users
304494
%patch7 -p1 -b .shutdown-msg
304494
%patch8 -p1 -b .temp-name
304494
%patch9 -p1 -b .mailto
304494
%patch10 -p1 -b .root
304494
%patch11 -p1 -b .man-file
304494
%patch12 -p1 -b .selinux-user
304494
%patch13 -p1 -b .no-pam
304494
%patch14 -p1 -b .empty-var
304494
%patch15 -p1 -b .race-cond
304494
%patch16 -p1 -b .inherit-path
304494
%patch17 -p1 -b .smartcard-auth
304494
%patch18 -p1 -b .restart
304494
304494
%build
304494
%configure \
304494
%if %{with pam}
304494
--with-pam \
304494
%endif
304494
%if %{with selinux}
304494
--with-selinux \
304494
%endif
304494
%if %{with audit}
304494
--with-audit \
304494
%endif
304494
%if %{with inotify}
304494
--with-inotify \
304494
%endif
304494
--enable-anacron \
304494
--enable-pie \
304494
--enable-relro
304494
304494
make %{?_smp_mflags}
304494
304494
%install
304494
make install DESTDIR=$RPM_BUILD_ROOT DESTMAN=$RPM_BUILD_ROOT%{_mandir}
304494
mkdir -pm700 $RPM_BUILD_ROOT%{_localstatedir}/spool/cron
304494
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/
304494
mkdir -pm755 $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/
304494
%if ! %{with pam}
304494
    rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/crond
304494
%endif
304494
install -m 600 crond.sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/crond
304494
touch $RPM_BUILD_ROOT%{_sysconfdir}/cron.deny
304494
install -m 600 contrib/anacrontab $RPM_BUILD_ROOT%{_sysconfdir}/anacrontab
304494
install -c -m755 contrib/0hourly $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/0hourly
304494
mkdir -pm 700 $RPM_BUILD_ROOT%{_sysconfdir}/cron.hourly
304494
install -c -m755 contrib/0anacron $RPM_BUILD_ROOT%{_sysconfdir}/cron.hourly/0anacron
304494
mkdir -p $RPM_BUILD_ROOT/var/spool/anacron
304494
touch $RPM_BUILD_ROOT/var/spool/anacron/cron.daily
304494
touch $RPM_BUILD_ROOT/var/spool/anacron/cron.weekly
304494
touch $RPM_BUILD_ROOT/var/spool/anacron/cron.monthly
304494
304494
# noanacron package
304494
install -m 644 contrib/dailyjobs $RPM_BUILD_ROOT/%{_sysconfdir}/cron.d/dailyjobs
304494
304494
# install systemd initscript
304494
mkdir -p $RPM_BUILD_ROOT/usr/lib/systemd/system/
304494
install -m 644 contrib/cronie.systemd $RPM_BUILD_ROOT/usr/lib/systemd/system/crond.service
304494
304494
%post
304494
# run after an installation
304494
%systemd_post crond.service
304494
304494
%post anacron
304494
[ -e /var/spool/anacron/cron.daily ] || touch /var/spool/anacron/cron.daily
304494
[ -e /var/spool/anacron/cron.weekly ] || touch /var/spool/anacron/cron.weekly
304494
[ -e /var/spool/anacron/cron.monthly ] || touch /var/spool/anacron/cron.monthly
304494
304494
%preun
304494
# run before a package is removed
304494
%systemd_preun crond.service
304494
304494
%postun
304494
# run after a package is removed
304494
%systemd_postun_with_restart crond.service
304494
304494
%triggerun -- cronie-anacron < 1.4.1
304494
# empty /etc/crontab in case there are only old regular jobs
304494
cp -a /etc/crontab /etc/crontab.rpmsave
304494
sed -e '/^01 \* \* \* \* root run-parts \/etc\/cron\.hourly/d'\
304494
  -e '/^02 4 \* \* \* root run-parts \/etc\/cron\.daily/d'\
304494
  -e '/^22 4 \* \* 0 root run-parts \/etc\/cron\.weekly/d'\
304494
  -e '/^42 4 1 \* \* root run-parts \/etc\/cron\.monthly/d' /etc/crontab.rpmsave > /etc/crontab
304494
exit 0
304494
304494
%triggerun -- cronie < 1.4.7-2
304494
# Save the current service runlevel info
304494
# User must manually run systemd-sysv-convert --apply crond
304494
# to migrate them to systemd targets
304494
/usr/bin/systemd-sysv-convert --save crond
304494
304494
# The package is allowed to autostart:
304494
/bin/systemctl enable crond.service >/dev/null 2>&1
304494
304494
/sbin/chkconfig --del crond >/dev/null 2>&1 || :
304494
/bin/systemctl try-restart crond.service >/dev/null 2>&1 || :
304494
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
304494
304494
%triggerin -- pam, glibc, libselinux
304494
# changes in pam, glibc or libselinux can make crond crash
304494
# when it calls pam
304494
/bin/systemctl try-restart crond.service >/dev/null 2>&1 || :
304494
304494
%files
304494
%doc AUTHORS COPYING INSTALL README ChangeLog
304494
%attr(755,root,root) %{_sbindir}/crond
304494
%attr(4755,root,root) %{_bindir}/crontab
304494
%{_mandir}/man8/crond.*
304494
%{_mandir}/man8/cron.*
304494
%{_mandir}/man5/crontab.*
304494
%{_mandir}/man1/crontab.*
304494
%dir %{_localstatedir}/spool/cron
304494
%dir %{_sysconfdir}/cron.d
304494
%if %{with pam}
304494
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/pam.d/crond
304494
%endif
304494
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/sysconfig/crond
304494
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/cron.deny
304494
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/0hourly
304494
%attr(0644,root,root) /usr/lib/systemd/system/crond.service
304494
304494
%files anacron
304494
%{_sbindir}/anacron
304494
%attr(0755,root,root) %{_sysconfdir}/cron.hourly/0anacron
304494
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/anacrontab
304494
%dir /var/spool/anacron
304494
%ghost %attr(0600,root,root) %verify(not md5 size mtime) /var/spool/anacron/cron.daily
304494
%ghost %attr(0600,root,root) %verify(not md5 size mtime) /var/spool/anacron/cron.weekly
304494
%ghost %attr(0600,root,root) %verify(not md5 size mtime) /var/spool/anacron/cron.monthly
304494
%{_mandir}/man5/anacrontab.*
304494
%{_mandir}/man8/anacron.*
304494
304494
%files noanacron
304494
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/dailyjobs
304494
304494
%changelog
304494
* Wed Feb 13 2019 Marcel Plch <mplch@redhat.com> - 1.4.11-23
304494
- Make cronie restart on failure
304494
- Resolves: rhbz#1651730
304494
304494
* Tue Dec 04 2018 Marcel Plch <mplch@redhat.com> - 1.4.11-22
304494
- Backport upstream patch to fix cron failing on
304494
  smart card authentication
304494
- Resolves: rhbz#1650314
304494
304494
* Thu Nov 29 2018 Marcel Plch <mplch@redhat.com> - 1.4.11-21
304494
- Backport upstream patch to fix -P behavior
304494
- Resolves: rhbz#1536111
304494
304494
* Tue Oct 23 2018 Marcel Plch <mplch@redhat.com> - 1.4.11-20
304494
- Fix race condition when crontab is modified the same second
304494
  before and after reading the crontab
304494
- Resolves: rhbz#1638691
304494
304494
* Mon Oct 16 2017 Tomáš Mráz <tmraz@redhat.com> - 1.4.11-19
304494
- fix URL and source URL of the package (#1501726)
304494
304494
* Fri Sep 15 2017 Tomáš Mráz <tmraz@redhat.com> - 1.4.11-18
304494
- fix regression - spurious PAM log message from crontab (#1479064)
304494
- allow empty variables in crontabs (#1439217)
304494
304494
* Wed Mar 29 2017 Tomáš Mráz <tmraz@redhat.com> - 1.4.11-17
304494
- make anacron not to contradict itself in syslog
304494
  (job output does not have to be necessarily mailed)
304494
304494
* Tue Mar  7 2017 Tomáš Mráz <tmraz@redhat.com> - 1.4.11-16
304494
- disable mail from anacron with empty MAILTO
304494
- crontab: do not block access with PAM when running as root
304494
- improve the crontab man page
304494
- do not hardcode system_u selinux user but use the user from
304494
  the current context
304494
304494
* Tue Feb 23 2016 Tomáš Mráz <tmraz@redhat.com> - 1.4.11-15
304494
- crontab: use temporary filename properly ignored by crond
304494
304494
* Tue Apr 21 2015 Tomáš Mráz <tmraz@redhat.com> - 1.4.11-14
304494
- mark the 0hourly and dailyjobs crontabs as config
304494
- properly handle users for whose getpwnam() returns NULL temporarily
304494
- log when crond is shutting down
304494
304494
* Mon Jul  7 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-13
304494
- reload in unit file was still missing
304494
- Related: rhbz#1114815
304494
304494
* Fri Jul  4 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-12
304494
- reload in unit file was missing
304494
- Resolves: rhbz#1114815
304494
304494
* Mon Jan 27 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-11
304494
- now it's work even on ppc64, all checks working correctly
304494
- Related: rhbz#1031384
304494
304494
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.4.11-10
304494
- Mass rebuild 2014-01-24
304494
304494
* Wed Jan 22 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-9
304494
- fix coverity warnings about dead code. Incorrect checking of values.
304494
- Related: rhbz#1031384
304494
304494
* Mon Jan 20 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-8
304494
- anacron do not execute jobs run from command line
304494
- Related: rhbz#1031384
304494
304494
* Wed Jan 08 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-7
304494
- anacron segfaults with certain config data
304494
- Resolves: rhbz#1031384
304494
304494
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.4.11-6
304494
- Mass rebuild 2013-12-27
304494
304494
* Tue Oct 15 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-5
304494
- Cronie doesn't work when is executed as stand alone without systemd (for 
304494
  debuging issues)
304494
- Fix another permission, hopefully all now.
304494
- Resolves: rhbz#1012420, rhbz#1015567
304494
304494
* Fri Sep 13 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-4
304494
- fix permission on configuration files, same as rhbz#706979
304494
304494
* Fri Aug 30 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-3
304494
- 919290 systemd script use "KillMode=process"
304494
- Fcntl locking has different semantics than flock. Prefer flock.
304494
  - 49225e172d156531ca142518d2638350752e373a
304494
- Pull PAM environment variables also from session modules.
304494
  - c8e7d1b43c86a85441cb09cf7e08090f3ec1f384
304494
304494
* Mon Jul 22 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-2
304494
- scriptlets are not created correctly if systemd is not in BR 986698
304494
- remove sub-package sysvinit, which is not needed anymore
304494
- update license, anacron is under GPLv2+
304494
304494
* Thu Jul 18 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-1
304494
- new release 1.4.11 (contains previous bug fixes from 1.4.10-5)
304494
304494
* Tue Jun 11 2013 Tomáš Mráz <tmraz@redhat.com> - 1.4.10-5
304494
- add support for RANDOM_DELAY - delaying job startups
304494
- pass some environment variables to processes (LANG, etc.) (#969761)
304494
- do not use putenv() with string literals (#971516)
304494
304494
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.10-4
304494
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
304494
304494
* Wed Jan  2 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.10-3
304494
- change configuration files to 644
304494
- change 6755 to 4755 for crontab binary
304494
304494
* Tue Nov 27 2012 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.10-1
304494
- New release 1.4.10
304494
304494
* Thu Nov 22 2012 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.9-1
304494
- New release 1.4.9
304494
304494
* Wed Sep 05 2012 Václav Pavlín <vpavlin@redhat.com> - 1.4.8-13
304494
- Scriptlets replaced with new systemd macros (#850070)
304494
304494
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-12
304494
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
304494
304494
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-11
304494
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
304494
304494
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-10
304494
- Rebuilt for glibc bug#747377
304494
304494
* Tue Oct 25 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-9
304494
- make crond run a little bit later in the boot process (#747759)
304494
304494
* Mon Oct 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.8-8
304494
- change triggerun to fix 735802 during upgrade
304494
304494
* Wed Jul 27 2011 Karsten Hopp <karsten@redhat.com> 1.4.8-7
304494
- rebuild again, ppc still had the broken rpm in the buildroots
304494
304494
* Thu Jul 21 2011 Rex Dieter <rdieter@fedoraproject.org> 1.4.8-6
304494
- rebuild (broken rpm in buildroot)
304494
304494
* Thu Jul 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.8-5
304494
- fix permission of init.d/crond
304494
304494
* Thu Jun 30 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-4
304494
- drop the without systemd build condition
304494
- add the chkconfig readding trigger to the sysvinit subpackage
304494
304494
* Wed Jun 29 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-3
304494
- start crond after auditd
304494
304494
* Wed Jun 29 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-2
304494
- fix inotify support to not leak fds (#717505)
304494
304494
* Tue Jun 28 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.8-1
304494
- update to 1.4.8
304494
- create sub-package sysvinit for initscript
304494
304494
* Mon May  9 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.7-3
304494
- missing requirement on systemd-sysv for scriptlets
304494
304494
* Thu May 05 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.7-2
304494
- use only systemd units with systemd
304494
- add trigger for restart on glibc, libselinux or pam upgrades (#699189)
304494
304494
* Tue Mar 15 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.7-1
304494
- new release 1.4.7
304494
304494
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.6-9
304494
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
304494
304494
* Mon Jan 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-8
304494
- enable crond even with systemctl
304494
304494
* Thu Dec 16 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-7
304494
- 663193 rewritten selinux support
304494
304494
* Wed Dec 15 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-6
304494
- apply selinux patch from dwalsh
304494
304494
* Fri Dec 10 2010 Tomas Mraz <tmraz@redhat.com> - 1.4.6-5
304494
- do not lock jobs that fall out of allowed range - 661966
304494
304494
* Thu Dec 02 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-4
304494
- fix post (thanks plautrba for review)
304494
304494
* Tue Nov 30 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-3
304494
- systemd init script 617320
304494
304494
* Tue Nov 30 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-2
304494
- fix typos in man pages
304494
304494
* Fri Oct 22 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-1
304494
- update to 1.4.6
304494
304494
* Fri Aug 13 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.5-4
304494
- 623908 fix fd leak in anacron, which caused denail of prelink 
304494
  and others
304494
304494
* Mon Aug  9 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.5-2
304494
- remove sendmail from requirements. If it's not installed, it will
304494
 log into (r)syslog.
304494
304494
* Mon Aug  2 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.5-1
304494
- update to new release
304494
304494
* Fri Feb 19 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.4-1
304494
- update to new release
304494
304494
* Mon Feb 15 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.3-3
304494
- 564894 FTBFS DSOLinking
304494
304494
* Thu Nov  5 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.3-2
304494
- 533189 pam needs add a line and selinux needs defined one function
304494
304494
* Fri Oct 30 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.3-1
304494
- 531963 and 532482 creating noanacron package
304494
304494
* Mon Oct 19 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.2-2
304494
- 529632 service crond stop returns appropriate value
304494
304494
* Mon Oct 12 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.2-1
304494
- new release
304494
304494
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.4.1-3
304494
- rebuilt with new audit
304494
304494
* Fri Aug 14 2009 Tomas Mraz <tmraz@redhat.com> - 1.4.1-2
304494
- create the anacron timestamps in correct post script
304494
304494
* Fri Aug 14 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.1-1
304494
- update to 1.4.1
304494
- create and own /var/spool/anacron/cron.{daily,weekly,monthly} to
304494
 remove false warning about non existent files
304494
- Resolves: 517398
304494
304494
* Wed Aug  5 2009 Tomas Mraz <tmraz@redhat.com> - 1.4-4
304494
- 515762 move anacron provides and obsoletes to the anacron subpackage
304494
304494
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-3
304494
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
304494
304494
* Mon Jul 20 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4-2
304494
- merge cronie and anacron in new release of cronie
304494
- obsolete/provide anacron in spec
304494
304494
* Thu Jun 18 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.3-2
304494
- 506560 check return value of access
304494
304494
* Mon Apr 27 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.3-1
304494
- new release
304494
304494
* Fri Apr 24 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-8
304494
- 496973 close file descriptors after exec
304494
304494
* Mon Mar  9 2009 Tomas Mraz <tmraz@redhat.com> - 1.2-7
304494
- rebuild
304494
304494
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-6
304494
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
304494
304494
* Tue Dec 23 2008 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-5
304494
- 477100 NO_FOLLOW was removed, reload after change in symlinked
304494
  crontab is needed, man updated.
304494
304494
* Fri Oct 24 2008 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-4
304494
- update init script
304494
304494
* Thu Sep 25 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-3
304494
- add sendmail file into requirement, cause it's needed some MTA
304494
304494
* Thu Sep 18 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-2
304494
- 462252  /etc/sysconfig/crond does not need to be executable 
304494
304494
* Thu Jun 26 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-1
304494
- update to 1.2
304494
304494
* Tue Jun 17 2008 Tomas Mraz <tmraz@redhat.com> - 1.1-3
304494
- fix setting keycreate context
304494
- unify logging a bit
304494
- cleanup some warnings and fix a typo in TZ code
304494
- 450993 improve and fix inotify support
304494
304494
* Wed Jun  4 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.1-2
304494
- 49864 upgrade/update problem. Syntax error in spec.
304494
304494
* Wed May 28 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.1-1
304494
- release 1.1
304494
304494
* Tue May 20 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-6
304494
- 446360 check for lock didn't call chkconfig
304494
304494
* Tue Feb 12 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-5
304494
- upgrade from less than cronie-1.0-4 didn't add chkconfig
304494
304494
* Wed Feb  6 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-4
304494
- 431366 after reboot wasn't cron in chkconfig
304494
304494
* Tue Feb  5 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-3
304494
- 431366 trigger part => after update from vixie-cron on cronie will 
304494
	be daemon running.
304494
304494
* Wed Jan 30 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-2
304494
- change the provides on higher version than obsoletes
304494
304494
* Tue Jan  8 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-1
304494
- packaging cronie
304494
- thank's for help with packaging to my reviewers