Information
The cron.allow and at.allow files are a list of users who are allowed to run the crontab and at commands to submit jobs to be run at scheduled intervals.
Solution
Perform the following to implement the recommended state-
cd /etc/cron.d
mv cron.deny cron.deny.cis
mv at.deny at.deny.cis
echo root > cron.allow
cp /dev/null at.allow
chown root:root cron.allow at.allow
chmod 400 cron.allow at.allow