From 495dad183731b97c11970fea7b60922d6c73806a Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 28 Mar 2009 19:10:21 +0100 Subject: [PATCH] cronie: create an empty /etc/cron.deny file, to allow all users. --HG-- extra : convert_revision : 21b22eacfb541eea1744b9ee5b99663d4359b0d8 --- templates/cronie/template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/cronie/template b/templates/cronie/template index b990a9bb2a9..6ff3f607a47 100644 --- a/templates/cronie/template +++ b/templates/cronie/template @@ -32,4 +32,8 @@ post_install() install -D -m755 ${FILESDIR}/crond ${DESTDIR}/etc/rc.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 }