2009-03-28 15:30:16 +01:00
|
|
|
# Template file for 'cronie'
|
|
|
|
pkgname=cronie
|
2010-10-22 21:10:09 +02:00
|
|
|
version=1.4.6
|
2010-02-17 21:02:20 +01:00
|
|
|
distfiles="https://fedorahosted.org/releases/c/r/cronie/cronie-$version.tar.gz"
|
2009-03-28 15:30:16 +01:00
|
|
|
build_style=gnu_configure
|
2009-10-30 21:02:05 +01:00
|
|
|
configure_args="--with-inotify --without-selinux --with-pam --disable-anacron
|
2009-10-30 22:12:18 +01:00
|
|
|
--with-daemon_username=nobody --with-daemon_groupname=nobody
|
|
|
|
--localstatedir=/var"
|
2009-03-28 15:30:16 +01:00
|
|
|
short_desc="Runs specified programs at scheduled times"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2010-10-22 21:10:09 +02:00
|
|
|
checksum=4435484c28a4452ee37db27182675660cdebf16d8956771b28c8a6f2e9c8048b
|
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."
|
|
|
|
|
2009-10-17 03:12:48 +02:00
|
|
|
keep_empty_dirs=yes
|
2009-03-28 17:44:07 +01:00
|
|
|
conf_files="/etc/crontab"
|
2010-04-16 22:09:33 +02:00
|
|
|
openrc_services="crond default true"
|
2009-03-28 17:44:07 +01:00
|
|
|
|
2010-02-17 21:02:20 +01:00
|
|
|
Add_dependency run glibc
|
|
|
|
Add_dependency run pam
|
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()
|
|
|
|
{
|
2009-10-04 16:33:27 +02:00
|
|
|
install -d ${DESTDIR}/etc/cron.d ${DESTDIR}/etc/cron.hourly \
|
|
|
|
${DESTDIR}/etc/cron.daily ${DESTDIR}/etc/cron.weekly \
|
|
|
|
${DESTDIR}/etc/cron.monthly ${DESTDIR}/etc/logrotate.d
|
2009-03-28 19:20:48 +01:00
|
|
|
install -d -m755 ${DESTDIR}/var/spool/cron
|
2009-03-28 17:44:07 +01:00
|
|
|
|
2009-05-04 22:10:13 +02:00
|
|
|
install -D -m755 ${FILESDIR}/crond.rc ${DESTDIR}/etc/init.d/crond
|
2009-10-04 16:33:27 +02:00
|
|
|
install -m644 ${FILESDIR}/crontab ${DESTDIR}/etc/crontab
|
|
|
|
install -m644 ${FILESDIR}/crond.logrotate \
|
|
|
|
${DESTDIR}/etc/logrotate.d/crond
|
2010-04-13 07:42:25 +02:00
|
|
|
rm -vf ${DESTDIR}/etc/pam.d/crond
|
|
|
|
install -D -m644 ${FILESDIR}/crond.pam ${DESTDIR}/etc/pam.d/crond
|
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
|
|
|
}
|