void-packages/templates/cronie/template
Juan RP 9a3f2e7c3d Handle openrc_services more gracefully.
1) There's no need to specify the trigger anymore.
2) There's no need to add the OpenRC run dependency anymore.

Just specifying $openrc_services is enough.

--HG--
extra : convert_revision : 34e4d6d37a07a18837ef2216474ee0ca6fd55124
2009-05-14 21:26:44 +02:00

40 lines
1.3 KiB
Text

# Template file for 'cronie'
pkgname=cronie
version=1.3
revision=1
distfiles="http://mmaslano.fedorapeople.org/cronie/cronie-$version.tar.gz"
build_style=gnu_configure
configure_args="--with-inotify --without-selinux --with-pam
--with-daemon_username=nobody --with-daemon_groupname=nobody"
short_desc="Runs specified programs at scheduled times"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=78863d3080d12bdc275408c3c4e21e92472608abdea1c6b628abd24429d34ded
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."
conf_files="/etc/crontab"
openrc_services="crond default"
Add_dependency full glibc
Add_dependency full pam
Add_dependency full run-parts
post_install()
{
install -d ${DESTDIR}/etc/cron.d
install -d ${DESTDIR}/etc/cron.hourly
install -d ${DESTDIR}/etc/cron.daily
install -d ${DESTDIR}/etc/cron.weekly
install -d ${DESTDIR}/etc/cron.monthly
install -d -m755 ${DESTDIR}/var/spool/cron
install -D -m755 ${FILESDIR}/crond.rc ${DESTDIR}/etc/init.d/crond
install -D -m644 ${FILESDIR}/crontab ${DESTDIR}/etc/crontab
# Add /etc/cron.deny empty, to allow all users.
touch ${DESTDIR}/etc/cron.deny
chmod 644 ${DESTDIR}/etc/cron.deny
}