Last Modified: Nov 07, 2022
Affected Product(s):
BIG-IP APM, LTM
Known Affected Versions:
13.1.0, 13.1.0.1, 13.1.0.2, 13.1.0.3, 13.1.0.4, 13.1.0.5, 13.1.0.6, 13.1.0.7, 13.1.0.8, 13.1.1, 13.1.1.2, 13.1.1.3, 13.1.1.4, 13.1.1.5, 13.1.3, 13.1.3.1, 13.1.3.2, 13.1.3.3, 13.1.3.4, 13.1.3.5, 13.1.3.6, 13.1.4, 13.1.4.1, 13.1.5, 13.1.5.1, 14.0.0, 14.0.0.1, 14.0.0.2, 14.0.0.3, 14.0.0.4, 14.0.0.5, 14.0.1
Fixed In:
14.1.0, 14.0.1.1
Opened: Jun 04, 2018 Severity: 3-Major
In the /root directory, there is a file named 'dead.letter' containing the following: /etc/cron.daily/cleanup_sync_files: ls: cannot access /config/filestore/sync_file_request_d: No such file or directory.
The file /root/dead.letter grows daily by 5 lines regarding missing sync_file_request_d directory.
cron is running.
To avoid output that triggers mail to the dead.mail file, do the following: add '2> /dev/null' to the crontab daily script: /etc/cron.daily/cleanup_sync_files - for file in `ls $path` + for file in `ls $path 2>/dev/null` # <-- the 2>/dev/null
The 'dead.letter' is no longer generated.