summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Admin/Pull.py
diff options
context:
space:
mode:
authorRobert Gogolok <gogo@cs.uni-sb.de>2007-12-30 19:53:25 +0000
committerRobert Gogolok <gogo@cs.uni-sb.de>2007-12-30 19:53:25 +0000
commit06eeffe8e6344ac62b74cae38d2733b4b64900f1 (patch)
tree1ecdb4839a089176ffe84864945b9d925da6fd98 /src/lib/Server/Admin/Pull.py
parentd57ec8b80f66b1618e0a1b51885a29036effa6e9 (diff)
downloadbcfg2-06eeffe8e6344ac62b74cae38d2733b4b64900f1.tar.gz
bcfg2-06eeffe8e6344ac62b74cae38d2733b4b64900f1.tar.bz2
bcfg2-06eeffe8e6344ac62b74cae38d2733b4b64900f1.zip
bcfg2-admin: use Bcfg2.Settings
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4133 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 ab334dbf9..1071b5100 100644
--- a/src/lib/Server/Admin/Pull.py
+++ b/src/lib/Server/Admin/Pull.py
@@ -6,8 +6,8 @@ class Pull(Bcfg2.Server.Admin.Mode):
'''Pull mode retrieves entries from clients and integrates the information into the repository'''
__shorthelp__ = 'bcfg2-admin pull <client> <entry type> <entry name>'
__longhelp__ = __shorthelp__ + '\n\tIntegrate configuration information from clients into the server repository'
- def __init__(self, configfile):
- Bcfg2.Server.Admin.Mode.__init__(self, configfile)
+ def __init__(self):
+ Bcfg2.Server.Admin.Mode.__init__(self)
def __call__(self, args):
Bcfg2.Server.Admin.Mode.__call__(self, args)