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
|
2012-11-16 00:21:22 +01:00
|
|
|
revision=13
|
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
|
2012-11-16 00:21:22 +01:00
|
|
|
--localstatedir=/var"
|
2012-05-23 18:26:56 +02:00
|
|
|
makedepends="pam-devel"
|
|
|
|
fulldepends="run-parts"
|
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"
|
2012-07-09 18:16:21 +02:00
|
|
|
distfiles="https://fedorahosted.org/releases/c/r/cronie/cronie-$version.tar.gz"
|
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-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
|
|
|
|
2012-07-09 18:16:21 +02: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
|
|
|
|
2012-07-09 18:16:21 +02:00
|
|
|
vinstall ${FILESDIR}/cronie.service 644 usr/lib/systemd/system
|
2011-10-11 05:14:24 +02:00
|
|
|
vinstall ${FILESDIR}/crontab 644 etc
|
|
|
|
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
|
|
|
}
|