summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Admin/Pull.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/Pull.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/Pull.py')
-rw-r--r--src/lib/Server/Admin/Pull.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Server/Admin/Pull.py b/src/lib/Server/Admin/Pull.py
index 71bfdefc2..d0efe489e 100644
--- a/src/lib/Server/Admin/Pull.py
+++ b/src/lib/Server/Admin/Pull.py
@@ -97,8 +97,8 @@ class Pull(Bcfg2.Server.Admin.Mode):
new_entry = self.BuildNewEntry(client, etype, ename)
try:
- bcore = Bcfg2.Server.Core.Core(self.repo, [], ['Cfg', 'SSHbase', 'Metadata'],
- 'foo', False)
+ bcore = Bcfg2.Server.Core.Core(self.repo, [], [],
+ ['Cfg', 'SSHbase'], 'foo', False)
except Bcfg2.Server.Core.CoreInitError, msg:
self.errExit("Core load failed because %s" % msg)
[bcore.fam.Service() for _ in range(5)]