summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2009-01-27 13:55:16 -0500
committerMichael DeHaan <mdehaan@redhat.com>2009-01-27 13:55:16 -0500
commit2f6d87732bfab09c4a58db9504f92f23b358e779 (patch)
treef7f131861e243895d1adbd19158f3f67a2d0506d /scripts
parent78b66f205548e4a2bd6b8efca75891d31f0559d6 (diff)
downloadcobbler-2f6d87732bfab09c4a58db9504f92f23b358e779.tar.gz
cobbler-2f6d87732bfab09c4a58db9504f92f23b358e779.tar.xz
cobbler-2f6d87732bfab09c4a58db9504f92f23b358e779.zip
Fix bad python 2.6 deprecation patch, also fix invalid removal code, and remove a XMLRPC connection loop.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/cobblerd4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/cobblerd b/scripts/cobblerd
index 9a63a60e..fef360b3 100755
--- a/scripts/cobblerd
+++ b/scripts/cobblerd
@@ -82,13 +82,13 @@ def main():
# load the API now rather than later, to ensure cobblerd
# startup time is done before the service returns
- api = cobbler_api.BootAPI()
+ api = cobbler_api.BootAPI(log_settings=log_settings, is_cobblerd=True)
if options.daemonize:
daemonize_self()
try:
- app.core()
+ app.core(api)
except:
# FIXME: logging also?
traceback.print_exc()