# Cron image Cronjobs

Set cronjobs for a user.


Configuration syntax:

Directive Format Example

Cronjobs

Cronjobs:
  - user: username
    rules: |
      * * * * * cmd1
      * * * * * cmd2
      * * * * * cmd1
Cronjobs:
  - user: noam
    rules: |
      * * * * * echo "$(date)" >> /home/noam-cron.txt
      * * * * * echo "sent date" >> /home/noam-cron.txt
  - user: shay
    rules: |
      * * * * * echo "$(date)" >> /home/shay-cron.txt

NOTE

This directive would append the new rules to the users crontab.