From 79989e6a4ecb3dd4ab1b4733bb6cc5c34b23d7d1 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Fri, 22 Sep 2017 14:39:46 -0700 Subject: [PATCH] Rename function --- server/module_lib/icon_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/module_lib/icon_lib.py b/server/module_lib/icon_lib.py index d5425c5..8db918e 100644 --- a/server/module_lib/icon_lib.py +++ b/server/module_lib/icon_lib.py @@ -67,7 +67,7 @@ class IconModule(object): self.InstallPackages('python-pip') self.ExecChroot('pip', 'install', *packages) - def AddDaemonUsers(self, user): + def AddDaemonUser(self, user): self.ExecChroot('adduser', '--system', '--group', '--no-create-home', '--disabled-login', user) def AddAdminUser(self, user):