2008-01-30 07:59:43 +00:00
|
|
|
%bcond_without selinux
|
|
|
|
%bcond_without pam
|
|
|
|
%bcond_without audit
|
2008-02-07 14:50:24 +00:00
|
|
|
%bcond_without inotify
|
|
|
|
|
2008-01-30 07:59:43 +00:00
|
|
|
Summary: Cron daemon for executing programs at set times
|
|
|
|
Name: cronie
|
2009-04-27 10:22:22 +00:00
|
|
|
Version: 1.3
|
|
|
|
Release: 1%{?dist}
|
2008-01-30 07:59:43 +00:00
|
|
|
License: MIT and BSD
|
|
|
|
Group: System Environment/Base
|
|
|
|
URL: https://fedorahosted.org/cronie
|
2009-04-27 10:22:22 +00:00
|
|
|
Source0: https://fedorahosted.org/releases/c/r/cronie/%{name}-%{version}.tar.gz
|
|
|
|
#Source0: http://mmaslano.fedorapeople.org/cronie/%{name}-%{version}.tar.gz
|
2008-01-30 07:59:43 +00:00
|
|
|
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
Requires: syslog, bash >= 2.0
|
2008-09-25 12:49:00 +00:00
|
|
|
Requires: /usr/sbin/sendmail
|
2009-04-27 10:22:22 +00:00
|
|
|
Requires: anacron
|
2008-01-30 07:59:43 +00:00
|
|
|
Conflicts: sysklogd < 1.4.1
|
2008-01-30 15:25:26 +00:00
|
|
|
Provides: vixie-cron = 4:4.4
|
2008-01-30 07:59:43 +00:00
|
|
|
Obsoletes: vixie-cron <= 4:4.3
|
|
|
|
|
|
|
|
%if %{with selinux}
|
2008-06-02 08:01:27 +00:00
|
|
|
Requires: libselinux >= 2.0.64
|
|
|
|
Buildrequires: libselinux-devel >= 2.0.64
|
2008-01-30 07:59:43 +00:00
|
|
|
%endif
|
|
|
|
%if %{with pam}
|
2008-06-02 08:01:27 +00:00
|
|
|
Requires: pam >= 1.0.1
|
|
|
|
Buildrequires: pam-devel >= 1.0.1
|
2008-01-30 07:59:43 +00:00
|
|
|
%endif
|
|
|
|
%if %{with audit}
|
|
|
|
Buildrequires: audit-libs-devel >= 1.4.1
|
|
|
|
%endif
|
|
|
|
|
|
|
|
Requires(post): /sbin/chkconfig coreutils
|
|
|
|
Requires(postun): /sbin/chkconfig
|
|
|
|
Requires(postun): /sbin/service
|
|
|
|
Requires(preun): /sbin/chkconfig
|
|
|
|
Requires(preun): /sbin/service
|
|
|
|
|
|
|
|
%description
|
|
|
|
Cronie contains the standard UNIX daemon crond that runs specified programs at
|
|
|
|
scheduled times and related tools. It is a fork of the original vixie-cron and
|
|
|
|
has security and configuration enhancements like the ability to use pam and
|
|
|
|
SELinux.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%configure \
|
|
|
|
%if %{with pam}
|
|
|
|
--with-pam \
|
|
|
|
%endif
|
|
|
|
%if %{with selinux}
|
|
|
|
--with-selinux \
|
|
|
|
%endif
|
|
|
|
%if %{with audit}
|
2008-02-07 14:50:24 +00:00
|
|
|
--with-audit \
|
|
|
|
%endif
|
|
|
|
%if %{with inotify}
|
|
|
|
--with-inotify
|
2008-01-30 07:59:43 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT DESTMAN=$RPM_BUILD_ROOT%{_mandir}
|
|
|
|
mkdir -pm700 $RPM_BUILD_ROOT%{_localstatedir}/spool/cron
|
|
|
|
mkdir -pm755 $RPM_BUILD_ROOT%{_initrddir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/
|
|
|
|
mkdir -pm755 $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/
|
|
|
|
%if ! %{with pam}
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/crond
|
|
|
|
%endif
|
|
|
|
install -m 755 cronie.init $RPM_BUILD_ROOT%{_initrddir}/crond
|
2008-09-18 11:08:25 +00:00
|
|
|
install -m 644 crond.sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/crond
|
2008-01-30 07:59:43 +00:00
|
|
|
touch $RPM_BUILD_ROOT%{_sysconfdir}/cron.deny
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
2008-06-04 08:05:28 +00:00
|
|
|
/sbin/chkconfig --add crond
|
2008-02-05 14:50:39 +00:00
|
|
|
|
2008-01-30 07:59:43 +00:00
|
|
|
%preun
|
2008-02-05 14:50:39 +00:00
|
|
|
if [ "$1" = "0" ]; then
|
|
|
|
service crond stop >/dev/null 2>&1 ||:
|
|
|
|
/sbin/chkconfig --del crond
|
2008-01-30 07:59:43 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ "$1" -ge "1" ]; then
|
2008-02-05 14:50:39 +00:00
|
|
|
service crond condrestart > /dev/null 2>&1 ||:
|
2008-01-30 07:59:43 +00:00
|
|
|
fi
|
|
|
|
|
2008-02-07 14:50:24 +00:00
|
|
|
#copy the lock, remove old daemon from chkconfig
|
2008-02-05 14:50:39 +00:00
|
|
|
%triggerun -- vixie-cron
|
|
|
|
cp -a /var/lock/subsys/crond /var/lock/subsys/cronie > /dev/null 2>&1 ||:
|
|
|
|
|
|
|
|
#if the lock exist, then we restart daemon (it was running in the past).
|
2008-06-04 08:05:28 +00:00
|
|
|
#add new daemon into chkconfig everytime, when we upgrade to cronie from vixie-cron
|
2008-02-05 14:50:39 +00:00
|
|
|
%triggerpostun -- vixie-cron
|
2008-06-04 08:05:28 +00:00
|
|
|
/sbin/chkconfig --add crond
|
|
|
|
[ -f /var/lock/subsys/cronie ] && ( rm -f /var/lock/subsys/cronie ; service crond restart ) > /dev/null 2>&1 ||:
|
2008-02-05 14:50:39 +00:00
|
|
|
|
2008-01-30 07:59:43 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS COPYING INSTALL README ChangeLog
|
|
|
|
%attr(755,root,root) %{_sbindir}/crond
|
|
|
|
%attr(6755,root,root) %{_bindir}/crontab
|
|
|
|
%{_mandir}/man8/crond.*
|
|
|
|
%{_mandir}/man8/cron.*
|
|
|
|
%{_mandir}/man5/crontab.*
|
|
|
|
%{_mandir}/man1/crontab.*
|
|
|
|
%dir %{_localstatedir}/spool/cron
|
|
|
|
%dir %{_sysconfdir}/cron.d
|
|
|
|
%{_initrddir}/crond
|
|
|
|
%if %{with pam}
|
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/pam.d/crond
|
|
|
|
%endif
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/crond
|
|
|
|
%config(noreplace) %{_sysconfdir}/cron.deny
|
|
|
|
|
|
|
|
%changelog
|
2009-04-27 10:22:22 +00:00
|
|
|
* Mon Apr 27 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.3-1
|
|
|
|
- new release
|
|
|
|
|
|
|
|
* Fri Apr 24 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-8
|
|
|
|
- 496973 close file descriptors after exec
|
|
|
|
|
2009-03-09 08:12:18 +00:00
|
|
|
* Mon Mar 9 2009 Tomas Mraz <tmraz@redhat.com> - 1.2-7
|
|
|
|
- rebuild
|
|
|
|
|
2009-02-24 09:42:53 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-23 09:19:19 +00:00
|
|
|
* Tue Dec 23 2008 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-5
|
|
|
|
- 477100 NO_FOLLOW was removed, reload after change in symlinked
|
|
|
|
crontab is needed, man updated.
|
|
|
|
|
2008-10-24 12:58:41 +00:00
|
|
|
* Fri Oct 24 2008 Marcela Mašláňová <mmaslano@redhat.com> - 1.2-4
|
|
|
|
- update init script
|
|
|
|
|
2008-09-25 12:49:00 +00:00
|
|
|
* Thu Sep 25 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-3
|
|
|
|
- add sendmail file into requirement, cause it's needed some MTA
|
|
|
|
|
2008-09-18 11:08:25 +00:00
|
|
|
* Thu Sep 18 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-2
|
|
|
|
- 462252 /etc/sysconfig/crond does not need to be executable
|
|
|
|
|
2008-06-26 14:07:20 +00:00
|
|
|
* Thu Jun 26 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.2-1
|
|
|
|
- update to 1.2
|
|
|
|
|
2008-06-18 21:21:24 +00:00
|
|
|
* Tue Jun 17 2008 Tomas Mraz <tmraz@redhat.com> - 1.1-3
|
|
|
|
- fix setting keycreate context
|
|
|
|
- unify logging a bit
|
|
|
|
- cleanup some warnings and fix a typo in TZ code
|
|
|
|
- 450993 improve and fix inotify support
|
|
|
|
|
2008-06-04 08:05:28 +00:00
|
|
|
* Wed Jun 4 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.1-2
|
|
|
|
- 49864 upgrade/update problem. Syntax error in spec.
|
|
|
|
|
2008-06-02 08:01:27 +00:00
|
|
|
* Wed May 28 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.1-1
|
|
|
|
- release 1.1
|
|
|
|
|
2008-05-20 11:53:30 +00:00
|
|
|
* Tue May 20 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-6
|
|
|
|
- 446360 check for lock didn't call chkconfig
|
|
|
|
|
2008-02-12 15:13:11 +00:00
|
|
|
* Tue Feb 12 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-5
|
|
|
|
- upgrade from less than cronie-1.0-4 didn't add chkconfig
|
|
|
|
|
2008-02-07 14:50:24 +00:00
|
|
|
* Wed Feb 6 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-4
|
|
|
|
- 431366 after reboot wasn't cron in chkconfig
|
|
|
|
|
2008-02-05 14:50:39 +00:00
|
|
|
* Tue Feb 5 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-3
|
|
|
|
- 431366 trigger part => after update from vixie-cron on cronie will
|
|
|
|
be daemon running.
|
|
|
|
|
2008-01-30 15:25:26 +00:00
|
|
|
* Wed Jan 30 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-2
|
|
|
|
- change the provides on higher version than obsoletes
|
|
|
|
|
2008-01-30 07:59:43 +00:00
|
|
|
* Tue Jan 8 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-1
|
|
|
|
- packaging cronie
|
|
|
|
- thank's for help with packaging to my reviewers
|