The crontab file: Difference between revisions

From DXSpider Documentation Wiki
Jump to navigation Jump to search
m 1 revision imported
G0TRT (talk | contribs)
Added EA3CV's update utility.
 
Line 4: Line 4:


===The crontab file===
===The crontab file===
====Check for, and establish connections====


Login as 'sysop' and create a file in /spider/local_cmd called crontab.  Edit it with your favourite editor and add a line like this (I have included a comment)
Login as 'sysop' and create a file in /spider/local_cmd called crontab.  Edit it with your favourite editor and add a line like this (I have included a comment)


  # check every 10 minutes to see if gb7xxx is connected and if not
# Establish connections
# start a connect job going
  # check every 10 minutes to see if gb7xxx is connected and if not, start a connect job going
  0,10,20,30,40,50 * * * * start_connect('gb7xxx') unless connected('gb7xxx')
  0,10,20,30,40,50 * * * * start_connect('gb7xxx') unless connected('gb7xxx')


The callsign involved will be the callsign of the cluster node you are going to connect to.  This will now check every 10 minutes to see if gb7xxx is connected, if it is then nothing will be done.  If it is not, then a connect attempt will be started.
The callsign involved will be the callsign of the cluster node you are going to connect to.  This will now check every 10 minutes to see if gb7xxx is connected, if it is then nothing will be done.  If it is not, then a connect attempt will be started.


There are probably lots of other things you could use this crontab file for.  If you want to know more about it, look at the DXSpider website at the cron page where it is explained more fully.
====Keep DXspider up-to-date with the latest version====
 
# Check for update using EA3CV's update utilities each night prior to update
30 22 * * * spawn('cd /spider/local_cmd; wget -q https://raw.githubusercontent.com/EA3CV/dxspider_info/main/check_build.pl -O /spider/local_cmd/check_build.pl')
  32 22 * * * spawn('cd /spider/local_cmd; wget -q https://raw.githubusercontent.com/EA3CV/dxspider_info/main/undo_newbuild.pl -O /spider/local_cmd/undo_newbuild.pl')
35 22 * * * run_cmd('load/cmd')
#
# Check for updates on weekdays at 23:35 and 03:07, avoiding contest times at weekends. Y 5 is yes to backups, and keep 5 of them.
35 23 * * 1,2,3,4,5 run_cmd("check_build Y 5")
07 03 * * 1,2,3,4,5 run_cmd("check_build Y 5")

Latest revision as of 13:53, 3 April 2025

General Information

The following relates to all versions of DXSpider and is not platform related.

The crontab file

Check for, and establish connections

Login as 'sysop' and create a file in /spider/local_cmd called crontab. Edit it with your favourite editor and add a line like this (I have included a comment)

# Establish connections
# check every 10 minutes to see if gb7xxx is connected and if not, start a connect job going
0,10,20,30,40,50 * * * * start_connect('gb7xxx') unless connected('gb7xxx')

The callsign involved will be the callsign of the cluster node you are going to connect to. This will now check every 10 minutes to see if gb7xxx is connected, if it is then nothing will be done. If it is not, then a connect attempt will be started.

Keep DXspider up-to-date with the latest version

# Check for update using EA3CV's update utilities each night prior to update
30 22 * * * spawn('cd /spider/local_cmd; wget -q https://raw.githubusercontent.com/EA3CV/dxspider_info/main/check_build.pl -O /spider/local_cmd/check_build.pl')
32 22 * * * spawn('cd /spider/local_cmd; wget -q https://raw.githubusercontent.com/EA3CV/dxspider_info/main/undo_newbuild.pl -O /spider/local_cmd/undo_newbuild.pl')
35 22 * * * run_cmd('load/cmd')
#
# Check for updates on weekdays at 23:35 and 03:07, avoiding contest times at weekends. Y 5 is yes to backups, and keep 5 of them.
35 23 * * 1,2,3,4,5 run_cmd("check_build Y 5")
07 03 * * 1,2,3,4,5 run_cmd("check_build Y 5")