• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

DrWeb Updates - cron script interpretation

bradz

Regular Pleskian
When I edit the update cron script for DrWeb
/etc/cron.d/drweb-update
I have entered
* 1 * * 0 drweb /opt/drweb/update.pl > /dev/null 2>&1
This should run every sunday at 1am
Or should it be
*/* 1 * * 0 drweb /opt/drweb/update.pl > /dev/null 2>&1
What is the */ for? Is it needed?
Thanks!
Brad
 
It is cron expressions. The '/' character is used to specify increments. For example "0/15" in the seconds field means "the seconds 0, 15, 30, and 45". And "5/15" in the seconds field means "the seconds 5, 20, 35, and 50". Specifying '*' before the '/' is equivalent to specifying 0 is the value to start with.
 
Back
Top