From: Faiyaz Ahmed Date: Tue, 18 Nov 2008 19:35:05 +0000 (+0000) Subject: changed nm controller type. X-Git-Tag: NodeManager-1.8-1~18 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=441aa514e076df6818711447594be7793a3e2a2d;p=nodemanager.git changed nm controller type. --- diff --git a/controller.py b/controller.py index 65da89f..264b3bb 100644 --- a/controller.py +++ b/controller.py @@ -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):