2009-03-28 15:30:16 +01:00
|
|
|
# Template file for 'cronie'
|
|
|
|
pkgname=cronie
|
2011-10-11 05:14:24 +02:00
|
|
|
version=1.4.8
|
2011-12-15 16:42:05 +01:00
|
|
|
revision=11
|
2010-02-17 21:02:20 +01:00
|
|
|
distfiles="https://fedorahosted.org/releases/c/r/cronie/cronie-$version.tar.gz"
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2009-10-30 21:02:05 +01:00
|
|
|
configure_args="--with-inotify --without-selinux --with-pam --disable-anacron
|
2011-06-03 07:47:49 +02:00
|
|
|
--localstatedir=/var"
|
2009-03-28 15:30:16 +01:00
|
|
|
short_desc="Runs specified programs at scheduled times"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-03 07:47:49 +02:00
|
|
|
homepage="https://fedorahosted.org/cronie/"
|
|
|
|
license="BSD"
|
2011-10-11 05:14:24 +02:00
|
|
|
checksum=a3b910876f255712f1a5c364b74f34b0ceac9f6f3bbc45e854c5722785f513b3
|
2009-03-28 15:30:16 +01:00
|
|
|
long_desc="
|
|
|
|
Cronie contains the standard UNIX daemon crond that runs specified programs at
|
|
|
|
scheduled times and related tools. It is based on the original cron and
|
|
|
|
has security and configuration enhancements like the ability to use PAM and
|
|
|
|
SELinux."
|
|
|
|
|
2011-12-15 16:42:05 +01:00
|
|
|
build_requires=11
|
2011-10-11 05:14:24 +02:00
|
|
|
conf_files="/etc/crontab /etc/pam.d/crond /etc/cron.deny"
|
2011-11-10 12:21:40 +01:00
|
|
|
systemd_services="cronie.service on"
|
2011-06-03 07:53:58 +02:00
|
|
|
provides="cron-daemon-0"
|
|
|
|
replaces="cron-daemon>=0"
|
2009-03-28 17:44:07 +01:00
|
|
|
|
2009-03-28 17:48:02 +01:00
|
|
|
Add_dependency full run-parts
|
2010-02-17 21:02:20 +01:00
|
|
|
Add_dependency build pam-devel
|
2009-03-28 17:44:07 +01:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
2011-10-12 16:27:19 +02:00
|
|
|
install -d ${DESTDIR}/etc/cron.{d,hourly,daily,weekly,monthly}
|
|
|
|
touch ${DESTDIR}/etc/cron.{d,hourly,daily,weekly,monthly}/.owned
|
2011-10-11 05:14:24 +02:00
|
|
|
vmkdir var/spool/cron
|
2011-11-09 19:31:19 +01:00
|
|
|
touch ${DESTDIR}/var/spool/cron/.owned
|
2009-03-28 17:44:07 +01:00
|
|
|
|
2011-10-11 05:14:24 +02:00
|
|
|
vinstall ${FILESDIR}/cronie.service 644 lib/systemd/system
|
|
|
|
vinstall ${FILESDIR}/crontab 644 etc
|
|
|
|
vinstall ${FILESDIR}/crond.logrotate 644 etc/logrotate.d crond
|
|
|
|
rm -f ${DESTDIR}/etc/pam.d/crond
|
|
|
|
vinstall ${FILESDIR}/crond.pam 644 etc/pam.d crond
|
2011-10-20 17:38:44 +02:00
|
|
|
|
2009-03-28 19:10:21 +01:00
|
|
|
# Add /etc/cron.deny empty, to allow all users.
|
|
|
|
touch ${DESTDIR}/etc/cron.deny
|
|
|
|
chmod 644 ${DESTDIR}/etc/cron.deny
|
2009-03-28 17:44:07 +01:00
|
|
|
}
|