bd7553a
%bcond_without selinux
bd7553a
%bcond_without pam
bd7553a
%bcond_without audit
a8a4830
%bcond_without inotify
a8a4830
13f005c
Summary:   Cron daemon for executing programs at set times
13f005c
Name:      cronie
63359d0
Version:   1.5.1
d4e9ad7
Release:   5%{?dist}
14b82f4
License:   MIT and BSD and ISC and GPLv2+
13f005c
Group:     System Environment/Base
13f005c
URL:       https://fedorahosted.org/cronie
13f005c
Source0:   https://fedorahosted.org/releases/c/r/cronie/%{name}-%{version}.tar.gz
17fb400
a1d815b
Patch1:    cronie-1.5.1-power.patch
a1d815b
13f005c
Requires:  dailyjobs
bd7553a
bd7553a
%if %{with selinux}
13f005c
Requires:      libselinux >= 2.0.64
2ac33d0
Buildrequires: libselinux-devel >= 2.0.64
bd7553a
%endif
bd7553a
%if %{with pam}
13f005c
Requires:      pam >= 1.0.1
2ac33d0
Buildrequires: pam-devel >= 1.0.1
bd7553a
%endif
bd7553a
%if %{with audit}
bd7553a
Buildrequires: audit-libs-devel >= 1.4.1
bd7553a
%endif
bd7553a
2da5633
BuildRequires:    systemd
2da5633
Obsoletes:        %{name}-sysvinit
2da5633
edbdf04
Requires(post):   coreutils sed
868fb5f
Requires(post):   systemd
868fb5f
Requires(preun):  systemd
868fb5f
Requires(postun): systemd
868fb5f
Requires(post):   systemd
bd7553a
bd7553a
%description
bd7553a
Cronie contains the standard UNIX daemon crond that runs specified programs at
bd7553a
scheduled times and related tools. It is a fork of the original vixie-cron and
bd7553a
has security and configuration enhancements like the ability to use pam and
bd7553a
SELinux.
bd7553a
a1ab945
%package anacron
13f005c
Summary:   Utility for running regular jobs
13f005c
Requires:  crontabs
13f005c
Group:     System Environment/Base
13f005c
Provides:  dailyjobs
13f005c
Provides:  anacron = 2.4
6c2b716
Obsoletes: anacron <= 2.3
8bdfbc7
Requires(post): coreutils
13f005c
Requires:  %{name} = %{version}-%{release}
a1ab945
a1ab945
%description anacron
e88a856
Anacron is part of cronie that is used for running jobs with regular
e88a856
periodicity which do not have exact time of day of execution.
e88a856
e88a856
The default settings of anacron execute the daily, weekly, and monthly
e88a856
jobs, but anacron allows setting arbitrary periodicity of jobs.
e88a856
e88a856
Using anacron allows running the periodic jobs even if the system is often
e88a856
powered off and it also allows randomizing the time of the job execution
e88a856
for better utilization of resources shared among multiple systems.
a1ab945
2bb05b6
%package noanacron
13f005c
Summary:   Utility for running simple regular jobs in old cron style
13f005c
Group:     System Environment/Base
13f005c
Provides:  dailyjobs
13f005c
Requires:  crontabs
13f005c
Requires:  %{name} = %{version}-%{release}
2bb05b6
2bb05b6
%description noanacron
e88a856
Old style of running {hourly,daily,weekly,monthly}.jobs without anacron. No
e88a856
extra features.
2bb05b6
bd7553a
%prep
bd7553a
%setup -q
a1d815b
%patch1 -p1 -b .power
d306dac
bd7553a
%build
bd7553a
%configure \
bd7553a
%if %{with pam}
bd7553a
--with-pam \
bd7553a
%endif
bd7553a
%if %{with selinux}
bd7553a
--with-selinux \
bd7553a
%endif
bd7553a
%if %{with audit}
a8a4830
--with-audit \
a8a4830
%endif
a8a4830
%if %{with inotify}
a1ab945
--with-inotify \
bd7553a
%endif
13f005c
--enable-anacron \
13f005c
--enable-pie \
13f005c
--enable-relro
a1ab945
480fe2f
make %{?_smp_mflags}
bd7553a
bd7553a
%install
bd7553a
make install DESTDIR=$RPM_BUILD_ROOT DESTMAN=$RPM_BUILD_ROOT%{_mandir}
bd7553a
mkdir -pm700 $RPM_BUILD_ROOT%{_localstatedir}/spool/cron
bd7553a
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/
bd7553a
mkdir -pm755 $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/
bd7553a
%if ! %{with pam}
bd7553a
    rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/crond
bd7553a
%endif
d8c51ad
install -m 644 crond.sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/crond
bd7553a
touch $RPM_BUILD_ROOT%{_sysconfdir}/cron.deny
cb36306
install -m 644 contrib/anacrontab $RPM_BUILD_ROOT%{_sysconfdir}/anacrontab
a1ab945
install -c -m755 contrib/0hourly $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/0hourly
a1ab945
mkdir -pm 755 $RPM_BUILD_ROOT%{_sysconfdir}/cron.hourly
a1ab945
install -c -m755 contrib/0anacron $RPM_BUILD_ROOT%{_sysconfdir}/cron.hourly/0anacron
cb36306
mkdir -p $RPM_BUILD_ROOT/var/spool/anacron
cb36306
touch $RPM_BUILD_ROOT/var/spool/anacron/cron.daily
cb36306
touch $RPM_BUILD_ROOT/var/spool/anacron/cron.weekly
cb36306
touch $RPM_BUILD_ROOT/var/spool/anacron/cron.monthly
bd7553a
2bb05b6
# noanacron package
9c60ee1
install -m 644 contrib/dailyjobs $RPM_BUILD_ROOT/%{_sysconfdir}/cron.d/dailyjobs
2bb05b6
0361d4c
# install systemd initscript
0361d4c
mkdir -p $RPM_BUILD_ROOT/lib/systemd/system/
e4eada1
install -m 644 contrib/cronie.systemd $RPM_BUILD_ROOT/lib/systemd/system/crond.service
0361d4c
bd7553a
%post
2525e87
# run after an installation
eb4125d
%systemd_post crond.service
8bdfbc7
8bdfbc7
%post anacron
d33f223
[ -e /var/spool/anacron/cron.daily ] || touch /var/spool/anacron/cron.daily 2>/dev/null || :
d33f223
[ -e /var/spool/anacron/cron.weekly ] || touch /var/spool/anacron/cron.weekly 2>/dev/null || :
d33f223
[ -e /var/spool/anacron/cron.monthly ] || touch /var/spool/anacron/cron.monthly 2>/dev/null || :
16ca3a6
bd7553a
%preun
2525e87
# run before a package is removed
eb4125d
%systemd_preun crond.service
bd7553a
bd7553a
%postun
2525e87
# run after a package is removed
eb4125d
%systemd_postun_with_restart crond.service
bd7553a
741d90e
%triggerun -- cronie-anacron < 1.4.1
edbdf04
# empty /etc/crontab in case there are only old regular jobs
cb36306
cp -a /etc/crontab /etc/crontab.rpmsave
cb36306
sed -e '/^01 \* \* \* \* root run-parts \/etc\/cron\.hourly/d'\
cb36306
  -e '/^02 4 \* \* \* root run-parts \/etc\/cron\.daily/d'\
cb36306
  -e '/^22 4 \* \* 0 root run-parts \/etc\/cron\.weekly/d'\
cb36306
  -e '/^42 4 1 \* \* root run-parts \/etc\/cron\.monthly/d' /etc/crontab.rpmsave > /etc/crontab
cb36306
exit 0
cb36306
edbdf04
%triggerun -- cronie < 1.4.7-2
edbdf04
# Save the current service runlevel info
edbdf04
# User must manually run systemd-sysv-convert --apply crond
edbdf04
# to migrate them to systemd targets
edbdf04
/usr/bin/systemd-sysv-convert --save crond
16ca3a6
edbdf04
# The package is allowed to autostart:
edbdf04
/bin/systemctl enable crond.service >/dev/null 2>&1
edbdf04
edbdf04
/sbin/chkconfig --del crond >/dev/null 2>&1 || :
edbdf04
/bin/systemctl try-restart crond.service >/dev/null 2>&1 || :
edbdf04
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
edbdf04
edbdf04
%triggerin -- pam, glibc, libselinux
edbdf04
# changes in pam, glibc or libselinux can make crond crash
edbdf04
# when it calls pam
edbdf04
/bin/systemctl try-restart crond.service >/dev/null 2>&1 || :
e88a856
bd7553a
%files
d306dac
%doc AUTHORS README ChangeLog
d306dac
%{!?_licensedir:%global license %%doc}
42a8554
%license COPYING
bd7553a
%attr(755,root,root) %{_sbindir}/crond
4f1f492
%attr(4755,root,root) %{_bindir}/crontab
bd7553a
%{_mandir}/man8/crond.*
bd7553a
%{_mandir}/man8/cron.*
bd7553a
%{_mandir}/man5/crontab.*
bd7553a
%{_mandir}/man1/crontab.*
bd7553a
%dir %{_localstatedir}/spool/cron
bd7553a
%dir %{_sysconfdir}/cron.d
bd7553a
%if %{with pam}
bd7553a
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/pam.d/crond
bd7553a
%endif
bd7553a
%config(noreplace) %{_sysconfdir}/sysconfig/crond
bd7553a
%config(noreplace) %{_sysconfdir}/cron.deny
bb7b26e
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/0hourly
0361d4c
%attr(0644,root,root) /lib/systemd/system/crond.service
a1ab945
a1ab945
%files anacron
a1ab945
%{_sbindir}/anacron
d7dc361
%attr(0755,root,root) %{_sysconfdir}/cron.hourly/0anacron
9c60ee1
%config(noreplace) %{_sysconfdir}/anacrontab
cb36306
%dir /var/spool/anacron
e118cfd
%ghost %attr(0600,root,root) %verify(not md5 size mtime) /var/spool/anacron/cron.daily
e118cfd
%ghost %attr(0600,root,root) %verify(not md5 size mtime) /var/spool/anacron/cron.weekly
e118cfd
%ghost %attr(0600,root,root) %verify(not md5 size mtime) /var/spool/anacron/cron.monthly
a1ab945
%{_mandir}/man5/anacrontab.*
a1ab945
%{_mandir}/man8/anacron.*
bd7553a
2bb05b6
%files noanacron
bb7b26e
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/dailyjobs
2bb05b6
bd7553a
%changelog
d4e9ad7
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-5
d4e9ad7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d4e9ad7
d33f223
* Tue Jan  3 2017 Tomáš Mráz <tmraz@redhat.com> - 1.5.1-4
d33f223
- make failure of creation of the ghost files in /var non-fatal
d33f223
2393c64
* Mon Sep  5 2016 Tomáš Mráz <tmraz@redhat.com> - 1.5.1-3
2393c64
- on some machines the power supply is named ADP0
2393c64
a1d815b
* Tue Aug 23 2016 Tomáš Mráz <tmraz@redhat.com> - 1.5.1-2
a1d815b
- query power status directly from kernel
a1d815b
63359d0
* Thu Jun 23 2016 Tomáš Mráz <tmraz@redhat.com> - 1.5.1-1
63359d0
- new upstream release
63359d0
defc50d
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-4
defc50d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
defc50d
3fe8250
* Mon Jul 13 2015 Tomáš Mráz <tmraz@redhat.com> - 1.5.0-3
3fe8250
- the temp file name used by crontab needs to be ignored by crond
3fe8250
847f386
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-2
847f386
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
847f386
058f85b
* Thu May 28 2015 Tomáš Mráz <tmraz@redhat.com> - 1.5.0-1
058f85b
- new upstream release
058f85b
bb7b26e
* Tue Apr 21 2015 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-6
bb7b26e
- mark the 0hourly and dailyjobs crontabs as config
bb7b26e
- do not add already existing orphan on reload
bb7b26e
e118cfd
* Tue Feb  3 2015 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-5
e118cfd
- correct the permissions of the anacron timestamp files
e118cfd
fc778cf
* Fri Jan  2 2015 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-4
fc778cf
- check for NULL pamh on two more places (#1176215)
fc778cf
bc9aef5
* Tue Dec  2 2014 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-3
bc9aef5
- call PAM only for non-root user or non-system crontabs (#956157)
bc9aef5
- bypass the PAM check in crontab for root (#1169175)
bc9aef5
17fb400
* Tue Nov  4 2014 Tomáš Mráz <tmraz@redhat.com> - 1.4.12-2
17fb400
- refresh user entries when jobs are run
17fb400
42a8554
* Wed Sep 17 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.12-1
42a8554
- new release 1.4.12
42a8554
- remove gpl2 license, because it's part of upstream COPYING now
42a8554
7fc0c97
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-9
7fc0c97
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
7fc0c97
d306dac
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 1.4.11-8
d306dac
- fix license handling
d306dac
063a8fb
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-7
063a8fb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
063a8fb
baf9308
* Wed Apr 30 2014 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-6
baf9308
- unwanted fd could make trouble to SElinux 1075106
baf9308
33d5961
* Thu Jan 16 2014 Ville Skyttä <ville.skytta@iki.fi> - 1.4.11-5
33d5961
- Drop INSTALL from docs, fix rpmlint tabs vs spaces warning.
33d5961
bce1943
* Wed Sep 25 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-4
bce1943
- some jobs are not executed because not all environment variables are set 995590
ed73090
- cronie's systemd script use "KillMode=process" 919290
bce1943
64608df
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-3
64608df
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
64608df
2da5633
* Mon Jul 22 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-2
2da5633
- scriptlets are not created correctly if systemd is not in BR 986698
2da5633
- remove sub-package sysvinit, which is not needed anymore
14b82f4
- update license, anacron is under GPLv2+
2da5633
773adb9
* Thu Jul 18 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.11-1
773adb9
- new release 1.4.11 (contains previous bug fixes from 1.4.10-5)
773adb9
b1659a4
* Tue Jun 11 2013 Tomáš Mráz <tmraz@redhat.com> - 1.4.10-5
b1659a4
- add support for RANDOM_DELAY - delaying job startups
b1659a4
- pass some environment variables to processes (LANG, etc.) (#969761)
b1659a4
- do not use putenv() with string literals (#971516)
b1659a4
7dcaab4
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.10-4
7dcaab4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
7dcaab4
d7dc361
* Wed Jan  2 2013 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.10-3
4f1f492
- change configuration files to 644
4f1f492
- change 6755 to 4755 for crontab binary
4f1f492
3c25985
* Tue Nov 27 2012 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.10-1
3c25985
- New release 1.4.10
3c25985
e4eada1
* Thu Nov 22 2012 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.9-1
e4eada1
- New release 1.4.9
e4eada1
eb4125d
* Wed Sep 05 2012 Václav Pavlín <vpavlin@redhat.com> - 1.4.8-13
eb4125d
- Scriptlets replaced with new systemd macros (#850070)
eb4125d
52d8958
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-12
52d8958
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
52d8958
e0b693e
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-11
e0b693e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e0b693e
62c7ab3
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-10
62c7ab3
- Rebuilt for glibc bug#747377
62c7ab3
00f22a5
* Tue Oct 25 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-9
00f22a5
- make crond run a little bit later in the boot process (#747759)
00f22a5
741d90e
* Mon Oct 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.8-8
741d90e
- change triggerun to fix 735802 during upgrade
741d90e
1103def
* Wed Jul 27 2011 Karsten Hopp <karsten@redhat.com> 1.4.8-7
1103def
- rebuild again, ppc still had the broken rpm in the buildroots
1103def
a377f5c
* Thu Jul 21 2011 Rex Dieter <rdieter@fedoraproject.org> 1.4.8-6
a377f5c
- rebuild (broken rpm in buildroot)
a377f5c
1ae525e
* Thu Jul 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.8-5
1ae525e
- fix permission of init.d/crond
1ae525e
e88a856
* Thu Jun 30 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-4
e88a856
- drop the without systemd build condition
e88a856
- add the chkconfig readding trigger to the sysvinit subpackage
e88a856
848a022
* Wed Jun 29 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-3
848a022
- start crond after auditd
848a022
83084af
* Wed Jun 29 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.8-2
83084af
- fix inotify support to not leak fds (#717505)
83084af
b7c4281
* Tue Jun 28 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.8-1
b7c4281
- update to 1.4.8
b7c4281
- create sub-package sysvinit for initscript
b7c4281
30d9f9e
* Mon May  9 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.7-3
30d9f9e
- missing requirement on systemd-sysv for scriptlets
30d9f9e
edbdf04
* Thu May 05 2011 Tomáš Mráz <tmraz@redhat.com> - 1.4.7-2
edbdf04
- use only systemd units with systemd
edbdf04
- add trigger for restart on glibc, libselinux or pam upgrades (#699189)
edbdf04
13f005c
* Tue Mar 15 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.7-1
13f005c
- new release 1.4.7
13f005c
ec872c8
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.6-9
ec872c8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ec872c8
796c147
* Mon Jan 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-8
796c147
- enable crond even with systemctl
796c147
bc6c948
* Thu Dec 16 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-7
bc6c948
- 663193 rewritten selinux support
bc6c948
bc6c948
* Wed Dec 15 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-6
bc6c948
- apply selinux patch from dwalsh
bc6c948
e987620
* Fri Dec 10 2010 Tomas Mraz <tmraz@redhat.com> - 1.4.6-5
e987620
- do not lock jobs that fall out of allowed range - 661966
e987620
9837899
* Thu Dec 02 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-4
9837899
- fix post (thanks plautrba for review)
9837899
0361d4c
* Tue Nov 30 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-3
0361d4c
- systemd init script 617320
0361d4c
aa4c6f7
* Tue Nov 30 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-2
aa4c6f7
- fix typos in man pages
aa4c6f7
873bb3b
* Fri Oct 22 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.6-1
873bb3b
- update to 1.4.6
873bb3b
c135c69
* Fri Aug 13 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.5-4
4104d4b
- 623908 fix fd leak in anacron, which caused denail of prelink 
4104d4b
  and others
4104d4b
5d2df74
* Mon Aug  9 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.5-2
5d2df74
- remove sendmail from requirements. If it's not installed, it will
5d2df74
 log into (r)syslog.
5d2df74
e9288c2
* Mon Aug  2 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.5-1
e9288c2
- update to new release
e9288c2
424974e
* Fri Feb 19 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.4-1
424974e
- update to new release
424974e
474e695
* Mon Feb 15 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.3-3
474e695
- 564894 FTBFS DSOLinking
474e695
e17b848
* Thu Nov  5 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.3-2
e17b848
- 533189 pam needs add a line and selinux needs defined one function
e17b848
9c60ee1
* Fri Oct 30 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.3-1
9c60ee1
- 531963 and 532482 creating noanacron package
2bb05b6
a4182f3
* Mon Oct 19 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.2-2
a4182f3
- 529632 service crond stop returns appropriate value
a4182f3
19134f2
* Mon Oct 12 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.2-1
19134f2
- new release
19134f2
d8d6329
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.4.1-3
d8d6329
- rebuilt with new audit
d8d6329
8bdfbc7
* Fri Aug 14 2009 Tomas Mraz <tmraz@redhat.com> - 1.4.1-2
8bdfbc7
- create the anacron timestamps in correct post script
8bdfbc7
cb36306
* Fri Aug 14 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4.1-1
cb36306
- update to 1.4.1
cb36306
- create and own /var/spool/anacron/cron.{daily,weekly,monthly} to
cb36306
 remove false warning about non existent files
cb36306
- Resolves: 517398
cb36306
6c2b716
* Wed Aug  5 2009 Tomas Mraz <tmraz@redhat.com> - 1.4-4
6c2b716
- 515762 move anacron provides and obsoletes to the anacron subpackage
6c2b716
a9bd31b
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-3
a9bd31b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a9bd31b
7dfe481
* Mon Jul 20 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.4-2
7dfe481
- merge cronie and anacron in new release of cronie
7dfe481
- obsolete/provide anacron in spec
a1ab945
480fe2f
* Thu Jun 18 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.3-2
480fe2f
- 506560 check return value of access
480fe2f
a1fd87f
* Mon Apr 27 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.3-1
a1fd87f
- new release
a1fd87f
a1fd87f
* Fri Apr 24 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-8
a1fd87f
- 496973 close file descriptors after exec
a1fd87f
5ea25f8
* Mon Mar  9 2009 Tomas Mraz <tmraz@redhat.com> - 1.2-7
5ea25f8
- rebuild
5ea25f8
2137a7c
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-6
2137a7c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2137a7c
71b3c55
* Tue Dec 23 2008 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-5
71b3c55
- 477100 NO_FOLLOW was removed, reload after change in symlinked
71b3c55
  crontab is needed, man updated.
71b3c55
67094fa
* Fri Oct 24 2008 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-4
67094fa
- update init script
67094fa
dc3e83b
* Thu Sep 25 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-3
dc3e83b
- add sendmail file into requirement, cause it's needed some MTA
dc3e83b
d8c51ad
* Thu Sep 18 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-2
d8c51ad
- 462252  /etc/sysconfig/crond does not need to be executable 
d8c51ad
1034fb3
* Thu Jun 26 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-1
1034fb3
- update to 1.2
1034fb3
4556428
* Tue Jun 17 2008 Tomas Mraz <tmraz@redhat.com> - 1.1-3
4556428
- fix setting keycreate context
4556428
- unify logging a bit
4556428
- cleanup some warnings and fix a typo in TZ code
4556428
- 450993 improve and fix inotify support
4556428
e23a698
* Wed Jun  4 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.1-2
e23a698
- 49864 upgrade/update problem. Syntax error in spec.
e23a698
2ac33d0
* Wed May 28 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.1-1
2ac33d0
- release 1.1
2ac33d0
733784e
* Tue May 20 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-6
733784e
- 446360 check for lock didn't call chkconfig
733784e
00da787
* Tue Feb 12 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-5
00da787
- upgrade from less than cronie-1.0-4 didn't add chkconfig
00da787
a8a4830
* Wed Feb  6 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-4
a8a4830
- 431366 after reboot wasn't cron in chkconfig
a8a4830
16ca3a6
* Tue Feb  5 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-3
16ca3a6
- 431366 trigger part => after update from vixie-cron on cronie will 
33d5961
  be daemon running.
16ca3a6
6a43ab7
* Wed Jan 30 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-2
6a43ab7
- change the provides on higher version than obsoletes
6a43ab7
bd7553a
* Tue Jan  8 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-1
bd7553a
- packaging cronie
bd7553a
- thank's for help with packaging to my reviewers