Index: trunk/Ohana/src/opihi/pantasks/init.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/init.c	(revision 7892)
+++ trunk/Ohana/src/opihi/pantasks/init.c	(revision 7929)
@@ -64,2 +64,25 @@
 
 }
+
+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]);
+  }
+
+}
