From 441aa514e076df6818711447594be7793a3e2a2d Mon Sep 17 00:00:00 2001 From: Faiyaz Ahmed Date: Tue, 18 Nov 2008 19:35:05 +0000 Subject: [PATCH] changed nm controller type. --- controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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): -- 2.43.0