diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2008-07-28 18:48:11 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2008-07-28 18:48:11 +0000 |
commit | 83b60a48456c8d3efe90b5593d80323e435f2426 (patch) | |
tree | 7d4847a47223580ea3c0c9d05e7b0609ed57aa1a /src/lib/Server/Admin/Query.py | |
parent | 011d38cd29880942c7049edd95078c41761c49cb (diff) | |
download | bcfg2-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/Query.py')
-rw-r--r-- | src/lib/Server/Admin/Query.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Server/Admin/Query.py b/src/lib/Server/Admin/Query.py index 9fc019a88..999bde5c2 100644 --- a/src/lib/Server/Admin/Query.py +++ b/src/lib/Server/Admin/Query.py @@ -8,8 +8,8 @@ class Query(Bcfg2.Server.Admin.Mode): Bcfg2.Logging.setup_logging(100, to_console=False, to_syslog=False) Bcfg2.Server.Admin.Mode.__init__(self, cfile) try: - self.bcore = Bcfg2.Server.Core.Core(self.get_repo_path(), - [], ['Metadata'], + 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) |