100 Day of DevOps, Day 6: Create a Cron Job, review process failed

I am following the 100 Day of DevOps practice and this is the second time that I finish the requirement from the day 6, which is:
The Nautilus system admins team has prepared scripts to automate several day-to-day tasks. They want them to be deployed on all app servers in Stratos DC on a set schedule. Before that they need to test similar functionality with a sample cron job. Therefore, perform the steps below:

a. Install cronie package on all Nautilus app servers and start crond service.
b. Add a cron */5 * * * * echo hello > /tmp/cron_text for root user.

And I have done it properly, but the review process failed. Can you please check it?

There turn out to be two ways to create a crontab that belong to root, and I suspect that you’re using the one the grader didn’t expect :slight_smile: See this guide for a technique that should work for this task.

1 Like

Thank you very much for your response. Much appreciated. :slightly_smiling_face:
I can suggest then that the instructions for the exercise should be more specific, since my approach achieved what is required, but the automation script is not considering that valid solution, which can be resolved clarifying that point in the exercise definition.