Other What cron creates /var/log/mount.today

There is no specified cron for creation /var/log/mount.today

Cron runs 'periodic daily'
Code:
1       3       *       *       *       root    periodic daily

'Periodic daily' runs 'periodic security',
and periodic security runs /etc/periodic/security/200.chkmounts which creates the specified file.

if you want to change this behaviour just add and set these options to the /etc/periodic.conf
Code:
# 200.chkmounts
security_status_chkmounts_enable="YES"
security_status_chkmounts_period="daily"
 
Back
Top