fixed save command in cron context
authorminima <minima>
Sun, 27 Jan 2002 12:49:09 +0000 (12:49 +0000)
committerminima <minima>
Sun, 27 Jan 2002 12:49:09 +0000 (12:49 +0000)
Changes
TODO
cmd/Commands_en.hlp
perl/DXProt.pm

diff --git a/Changes b/Changes
index aaaf54e5c93f8fd613bcc0b71aeb5ddbef80dc58..5c25b363c452d459ebe97b33583fdebf4963a24f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+27Jan02=======================================================================
+1. make save work in cron context
 22Jan02=======================================================================
 1. limit spot dupe checking to first 12 characters
 13Jan02=======================================================================
diff --git a/TODO b/TODO
index d07dc01b6fb151cba69cf69e1a622ce68723b1e3..cb1f9279b74b5ed432ff23bee8c52dddf6cd6545 100644 (file)
--- a/TODO
+++ b/TODO
@@ -22,4 +22,5 @@ New Protocol Stuff
 
 * split out all protocol elements into objects
 * move all routing and broadcasting into a separate modules
+* conference, topical announces and broadcast talk
 
index ff8b54f10d9b659c66f28d0cd1dd24ade3e1b5cc..41d6313b625d5ee1f3d9d4f91040cf4d5869155c 100644 (file)
@@ -1135,7 +1135,7 @@ need to create any directories you want to put stuff in beforehand as well.
 It is likely that you will want to run these commands in a crontab type 
 situation. You would do that something like:-
 
-  0 0 * * * run_cmd('save /tmp/dxstats echo "DXStat Table", "sh/dxstats"')
+  0 0 * * * run_cmd('save /tmp/dxstats "echo DXStat Table", "sh/dxstats"')
 
 Note that you still enclose each command with (") characters but you must
 enclose the entire save command in (') characters. 
index 9e07d9e4165e71c45e08ce78a8cd59a48c016c34..d26795c406a3921c3387a2e6e08f87b4992ac6d2 100644 (file)
@@ -1966,5 +1966,10 @@ sub eph_list
        }
        return @out;
 }
+
+sub run_cmd
+{
+       goto &DXCommandmode::run_cmd;
+}
 1;
 __END__