2

How can I configure aide linux to start at the selected time of the week, e.g. on Sundays at 9?

Melebius
  • 11,431
  • 9
  • 52
  • 78

1 Answers1

1

Do a which aide and copy the result (assuming /usr/bin/aide)

Add a line to crontab -e with format

0 9 * * Sun /usr/bin/aide --check 

OR to /etc/crontab:

0 9 * * Sun {user} /usr/bin/aide --check 
  • (1st 5: minutes, hours, day of month, month, day)
  • replace {user} by your username
  • Sun can be replaced by either 0 or 7.
Rinzwind
  • 299,756