New package cronie is the successor of vixie-cron (now obsolete).
This commit is contained in:
parent
d2f6a8ad2b
commit
bd7553a058
@ -0,0 +1 @@
|
|||||||
|
cronie-1.0.tar.gz
|
114
cronie.spec
Normal file
114
cronie.spec
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
%bcond_without selinux
|
||||||
|
%bcond_without pam
|
||||||
|
%bcond_without audit
|
||||||
|
Summary: Cron daemon for executing programs at set times
|
||||||
|
Name: cronie
|
||||||
|
Version: 1.0
|
||||||
|
Release: 1%{?dist}
|
||||||
|
License: MIT and BSD
|
||||||
|
Group: System Environment/Base
|
||||||
|
URL: https://fedorahosted.org/cronie
|
||||||
|
#Source0: https://fedorahosted.org/cronie/%{name}-%{version}.tar.gz
|
||||||
|
Source0: http://mmaslano.fedorapeople.org/cronie/%{name}-%{version}.tar.gz
|
||||||
|
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Requires: syslog, bash >= 2.0
|
||||||
|
Conflicts: sysklogd < 1.4.1
|
||||||
|
Provides: vixie-cron = 4:4.3
|
||||||
|
Obsoletes: vixie-cron <= 4:4.3
|
||||||
|
|
||||||
|
%if %{with selinux}
|
||||||
|
Requires: libselinux >= 2.0.0
|
||||||
|
Buildrequires: libselinux-devel >= 2.0.0
|
||||||
|
%endif
|
||||||
|
%if %{with pam}
|
||||||
|
Requires: pam >= 0.99.6.2
|
||||||
|
Buildrequires: pam-devel >= 0.99.6.2
|
||||||
|
%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}
|
||||||
|
--with-audit
|
||||||
|
%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
|
||||||
|
install -m 755 crond.sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/crond
|
||||||
|
touch $RPM_BUILD_ROOT%{_sysconfdir}/cron.deny
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/chkconfig --add crond
|
||||||
|
|
||||||
|
%preun
|
||||||
|
if [ $1 = 0 ]; then
|
||||||
|
/sbin/service crond stop >/dev/null 2>&1 || :
|
||||||
|
/sbin/chkconfig --del crond || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
%postun
|
||||||
|
if [ "$1" -ge "1" ]; then
|
||||||
|
/sbin/service crond condrestart >/dev/null 2>&1 || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
%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
|
||||||
|
* Tue Jan 8 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.0-1
|
||||||
|
- packaging cronie
|
||||||
|
- thank's for help with packaging to my reviewers
|
Loading…
Reference in New Issue
Block a user