From c08013dc2fc32582e8636d84be3e2f68dafe11a0 Mon Sep 17 00:00:00 2001 From: Faiyaz Ahmed Date: Fri, 14 Nov 2008 22:11:18 +0000 Subject: [PATCH] Change to Controller from Delegate shell --- controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller.py b/controller.py index da5da1b..65da89f 100644 --- a/controller.py +++ b/controller.py @@ -11,8 +11,8 @@ class Controller(accounts.Account): @staticmethod def create(name, vref = None): - add_shell(Delegate.SHELL) - logger.log_call('/usr/sbin/useradd', '-p', '*', '-s', Delegate.SHELL, name) + add_shell(Controller.SHELL) + logger.log_call('/usr/sbin/useradd', '-p', '*', '-s', Controller.SHELL, name) @staticmethod def destroy(name): logger.log_call('/usr/sbin/userdel', '-r', name) -- 2.43.0