Index: trunk/Ohana/src/opihi/pantasks/init.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/init.c	(revision 4539)
+++ trunk/Ohana/src/opihi/pantasks/init.c	(revision 4552)
@@ -1,3 +1,2 @@
-# include "basic.h"
 # include "scheduler.h"
 
@@ -10,4 +9,7 @@
 int run             PROTO((int, char **));
 int stop            PROTO((int, char **));
+int status_sys      PROTO((int, char **));
+int kill_job        PROTO((int, char **));
+int delete_job      PROTO((int, char **));
 
 static Command cmds[] = {  
@@ -21,14 +23,21 @@
   {"run",        run,          "run the scheduler"},
   {"stop",       stop,         "stop the scheduler"},
+  {"status",     status_sys,   "get system status"},
+  {"kill",       kill_job,     "kill job"},
+  {"delete",     delete_job,   "delete job"},
+}; 
 
+/* these are functions which duplicate actions on the 
+   controller.  these could simply pass the command along 
+   to the controller (and should then be in 'controller'),
+   or they could add / modify the jobs in the scheduler
+   job stack 
+
+  {"job",        job,          "add job"},
   {"kill",       kill_sh,      "kill job"},
   {"delete",     delete,       "delete job"},
-  {"job",        job,          "add job"},
-  {"host",       host,         "add / delete / modify host"},
-  {"check",      check,        "get job or host status"},
-  {"status",     status,       "get system status"},
-  {"stdout",     stdout_pc,    "get stdout buffer for job"},
-  {"stderr",     stderr_pc,    "get stderr buffer for job"},
-}; 
+  {"stdout",     stdout_sh,    "get stdout buffer for job"},
+  {"stderr",     stderr_sh,    "get stderr buffer for job"},
+*/
 
 void InitSched () {
