Index: trunk/Ohana/src/opihi/pantasks/init.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/init.c	(revision 7929)
+++ trunk/Ohana/src/opihi/pantasks/init.c	(revision 7960)
@@ -38,17 +38,4 @@
 }; 
 
-/* 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"},
-  {"stdout",     stdout_sh,    "get stdout buffer for job"},
-  {"stderr",     stderr_sh,    "get stderr buffer for job"},
-*/
-
 void InitPantasks () {
   
@@ -62,27 +49,3 @@
     AddCommand (&cmds[i]);
   }
-
 }
-
-int server         PROTO((int, char **));
-
-static Command server_cmds[] = {  
-  {"server",  server,   "server-specific commands"},
-}; 
-
-void InitPantasksServer () {
-  
-  int i;
-
-  InitTasks ();
-  InitJobs ();
-  InitJobIDs ();
-
-  for (i = 0; i < sizeof (cmds) / sizeof (Command); i++) {
-    AddCommand (&cmds[i]);
-  }
-  for (i = 0; i < sizeof (server_cmds) / sizeof (Command); i++) {
-    AddCommand (&server_cmds[i]);
-  }
-
-}
