summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Admin/Client.py
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2008-07-28 18:48:11 +0000
committerNarayan Desai <desai@mcs.anl.gov>2008-07-28 18:48:11 +0000
commit83b60a48456c8d3efe90b5593d80323e435f2426 (patch)
tree7d4847a47223580ea3c0c9d05e7b0609ed57aa1a /src/lib/Server/Admin/Client.py
parent011d38cd29880942c7049edd95078c41761c49cb (diff)
downloadbcfg2-83b60a48456c8d3efe90b5593d80323e435f2426.tar.gz
bcfg2-83b60a48456c8d3efe90b5593d80323e435f2426.tar.bz2
bcfg2-83b60a48456c8d3efe90b5593d80323e435f2426.zip
Implement support for non-configuration plugins
- add new configuration option - switch all callers over to new Core api - fork RecvStats when DBStats is in use git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4831 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Admin/Client.py')
-rw-r--r--src/lib/Server/Admin/Client.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/Server/Admin/Client.py b/src/lib/Server/Admin/Client.py
index a63c971fe..c51ac1598 100644
--- a/src/lib/Server/Admin/Client.py
+++ b/src/lib/Server/Admin/Client.py
@@ -8,9 +8,8 @@ class Client(Bcfg2.Server.Admin.Mode):
def __init__(self, configfile):
Bcfg2.Server.Admin.Mode.__init__(self, configfile)
try:
- self.bcore = Bcfg2.Server.Core.Core(self.get_repo_path(),
- [], ['Metadata'],
- 'foo', False, 'UTF-8')
+ self.bcore = Bcfg2.Server.Core.Core(self.get_repo_path(), [],
+ [], [], 'foo', False, 'UTF-8')
except Bcfg2.Server.Core.CoreInitError, msg:
self.errExit("Core load failed because %s" % msg)
[self.bcore.fam.Service() for _ in range(5)]