• 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!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

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