Issue
The cronjobs are reporting the following error:
/usr/bin/flock -n /var/run/cloudlinux_cl-quota.cronlock /usr/bin/cl-quota -YC
CloudLinux Solo edition detected!
Command is skipped, because it is unsupported and unneeded on current edition
Environment
- CloudLinux Solo
- Quota
Solution
Since CloudLinux OS Solo Edition it does not have Resource Limits those warning should be suppressed (related bug id CLOS-2569, CLOS-2374).
Try to update lve components using the following command:
yum update lve*
And recheck if the issue persist.
-------------------------------------------------------------------------------------------------------------
If it does not help:
As a temporary workaround to suppress the mail notification for the cron job you mentioned, you can redirect the output of your cron job to /dev/null
, which is a special file that discards all data written to it.
Modify the /etc/cron.d/lvemanager-cron file and append > /dev/null 2>&1
to the end of your cron job command:
*/5 * * * * root /usr/bin/flock -n /var/run/cloudlinux_cl-quota.cronlock /usr/bin/cl-quota -YC > /dev/null 2>&1
Useful links
Please check both tasks:
https://changelog.cloudlinux.com/search?value=CLOS-2374
yum update lve-utils lvemanager --enablerepo=cloudlinux-rollout-1-bypass
Comments
0 comments
Please sign in to leave a comment.