• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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