Index: /trunk/Ohana/src/opihi/pantasks/init.c
===================================================================
--- /trunk/Ohana/src/opihi/pantasks/init.c	(revision 13540)
+++ /trunk/Ohana/src/opihi/pantasks/init.c	(revision 13541)
@@ -17,6 +17,7 @@
 int stop            PROTO((int, char **));
 int halt            PROTO((int, char **));
+int flush_jobs      PROTO((int, char **));
 int pulse           PROTO((int, char **));
-int showtask       PROTO((int, char **));
+int showtask        PROTO((int, char **));
 int status_sys      PROTO((int, char **));
 int kill_job        PROTO((int, char **));
@@ -27,29 +28,30 @@
 
 static Command cmds[] = {  
+  {"active",     task_active,  	"set the active state of a task"},
+  {"command",    task_command, 	"define executed command for a task"},
   {"controller", controller,   	"controller commands"},
-  {"task",       task,         	"define a schedulable task"},
+  {"delete",     delete_job,   	"delete job"},
+  {"halt",       halt,         	"halt the scheduler (no job harvesting)"},
   {"host",       task_host,    	"define host machine for a task"},
+  {"ipptool2book", ipptool2book, "convert queue with ipptool output to book"},
+  {"kill",       kill_job,     	"kill job"},
   {"nmax",       task_nmax,    	"define maximum number of jobs for a task"},
   {"npending",   task_npending, "define maximum number of outstanding jobs for a task"},
-  {"active",     task_active,  	"set the active state of a task"},
-  {"trange",     task_trange,  	"define valid/invalid time periods for a task"},
-  {"task.exit",  task_macros,  	"define exit macros for a task"},
-  {"task.exec",  task_macros,  	"define pre-exec macro for a task"},
-  {"command",    task_command, 	"define executed command for a task"},
   {"options",    task_options, 	"define optional variables associated with the job task"},
   {"periods",    task_periods, 	"define time scales for a task"},
-  {"stdout",     task_stdout,  	"define a file for the job stdout dump"},
-  {"stderr",     task_stderr,  	"define a file for the job stderr dump"},
+  {"pulse",      pulse,        	"set the scheduler update period"},
   {"run",        run,          	"run the scheduler"},
-  {"stop",       stop,         	"stop the scheduler (continue job harvesting)"},
-  {"halt",       halt,         	"halt the scheduler (no job harvesting)"},
-  {"pulse",      pulse,        	"set the scheduler update period"},
+  {"flush",      flush_jobs,    "flush all jobs from the queue"},
   {"showtask",   showtask,   	"list a task"},
   {"status",     status_sys,   	"get system or task status"},
-  {"kill",       kill_job,     	"kill job"},
-  {"delete",     delete_job,   	"delete job"},
+  {"stderr",     task_stderr,  	"define a file for the job stderr dump"},
+  {"stdout",     task_stdout,  	"define a file for the job stdout dump"},
+  {"stop",       stop,         	"stop the scheduler (continue job harvesting)"},
+  {"task",       task,         	"define a schedulable task"},
+  {"task.exec",  task_macros,  	"define pre-exec macro for a task"},
+  {"task.exit",  task_macros,  	"define exit macros for a task"},
+  {"trange",     task_trange,  	"define valid/invalid time periods for a task"},
+  {"verbose",    verbose,      	"set/toggle verbose mode"},
   {"version",    version,      	"show version information"},
-  {"verbose",    verbose,      	"set/toggle verbose mode"},
-  {"ipptool2book", ipptool2book, "convert queue with ipptool output to book"},
 }; 
 
Index: /trunk/Ohana/src/opihi/pantasks/init_server.c
===================================================================
--- /trunk/Ohana/src/opihi/pantasks/init_server.c	(revision 13540)
+++ /trunk/Ohana/src/opihi/pantasks/init_server.c	(revision 13541)
@@ -5,4 +5,6 @@
 int task_host	    PROTO((int, char **));
 int task_nmax	    PROTO((int, char **));
+int task_npending   PROTO((int, char **));
+int task_active	    PROTO((int, char **));
 int task_trange	    PROTO((int, char **));
 int task_macros	    PROTO((int, char **));
@@ -10,6 +12,10 @@
 int task_options    PROTO((int, char **));
 int task_periods    PROTO((int, char **));
+int task_stdout     PROTO((int, char **));
+int task_stderr     PROTO((int, char **));
 int pulse           PROTO((int, char **));
+int flush_jobs      PROTO((int, char **));
 int status_server   PROTO((int, char **));
+int showtask        PROTO((int, char **));
 int kill_job        PROTO((int, char **));
 int delete_job      PROTO((int, char **));
@@ -20,22 +26,28 @@
 
 static Command cmds[] = {  
+  {"active",     task_active,  	"set the active state of a task"},
+  {"command",    task_command, 	"define executed command for a task"},
   {"controller", controller,   	"controller commands"},
-  {"task",       task,         	"define a schedulable task"},
+  {"delete",     delete_job,   	"delete job"},
   {"host",       task_host,    	"define host machine for a task"},
+  {"ipptool2book", ipptool2book, "convert queue with ipptool output to book"},
+  {"kill",       kill_job,     	"kill job"},
   {"nmax",       task_nmax,    	"define maximum number of jobs for a task"},
-  {"trange",     task_trange,  	"define valid/invalid time periods for a task"},
-  {"task.exit",  task_macros,  	"define exit macros for a task"},
-  {"task.exec",  task_macros,  	"define pre-exec macro for a task"},
-  {"command",    task_command, 	"define executed command for a task"},
   {"options",    task_options, "define optional variables associated with the job task"},
+  {"npending",   task_npending, "define maximum number of outstanding jobs for a task"},
   {"periods",    task_periods, 	"define time scales for a task"},
   {"pulse",      pulse,        	"set the scheduler update period"},
+  {"flush",      flush_jobs,    "flush all jobs from the queue"},
   {"server",     server,       	"server-specific commands"},
+  {"showtask",   showtask,   	"list a task"},
   {"status",     status_server, "get system status"},
-  {"kill",       kill_job,     	"kill job"},
-  {"delete",     delete_job,   	"delete job"},
+  {"stderr",     task_stderr,  	"define a file for the job stderr dump"},
+  {"stdout",     task_stdout,  	"define a file for the job stdout dump"},
+  {"task",       task,         	"define a schedulable task"},
+  {"task.exec",  task_macros,  	"define pre-exec macro for a task"},
+  {"task.exit",  task_macros,  	"define exit macros for a task"},
+  {"trange",     task_trange,  	"define valid/invalid time periods for a task"},
+  {"verbose",    verbose,      	"set/toggle verbose mode"},
   {"version",    version,      	"show version information"},
-  {"verbose",    verbose,      	"set/toggle verbose mode"},
-  {"ipptool2book", ipptool2book, "convert queue with ipptool output to book"},
 }; 
 
