changed nm controller type.
authorFaiyaz Ahmed <faiyaza@cs.princeton.edu>
Tue, 18 Nov 2008 19:35:05 +0000 (19:35 +0000)
committerFaiyaz Ahmed <faiyaza@cs.princeton.edu>
Tue, 18 Nov 2008 19:35:05 +0000 (19:35 +0000)
controller.py

index 65da89f..264b3bb 100644 (file)
@@ -1,4 +1,4 @@
-"""NM-Controller accounts are used to provide secure access to the XMLRPC API.  They are normal Unix accounts with a shell that tunnels XMLRPC requests to the API server."""
+"""Delegate accounts are used to provide secure access to the XMLRPC API.  They are normal Unix accounts with a shell that tunnels XMLRPC requests to the API server."""
 
 import accounts
 import logger
@@ -7,7 +7,7 @@ import tools
 
 class Controller(accounts.Account):
     SHELL = '/usr/bin/forward_api_calls'  # tunneling shell
-    TYPE = 'controller'
+    TYPE = 'controller.Controller'
 
     @staticmethod
     def create(name, vref = None):