Creating SSL Certificates using CertBot Certificate Authoriy (CA) in Debian 8 Jessie
Creating SSL Certificates using Certbot in Debian Jessie 8.7: Adding backport repository: First of all, add the backport Repository to...
cron / How-to / Linux / Linux Tips / security
Creating SSL Certificates using Certbot in Debian Jessie 8.7: Adding backport repository: First of all, add the backport Repository to...
How to redirecting cron job output to log file :
1 |
*/5 * * * * /home/venkatesh/campaign.sh >> /var/log/precampaign.log 2>&1 |
Note : 2>&1 indicates that the standard error (2>) is...
Running Cronjob with Delay: Use the Sleep option to delay the script execution like below.
1 |
[crayon-62f88df35492a134294744 inline="true" style="border: 0px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; margin: 0px; padding: 0px; white-space: inherit;"]<b>@reboot sleep 60 && my_script.sh</b> |
[/crayon]Here above Cronjob will wait...