summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-06-12 11:10:21 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-06-12 11:10:21 -0400
commitd3dfa949cba586ac3226486f763cba5140a90be7 (patch)
tree0f0759c3baa4ee014207c5ece2fa8b2b2ea5765c
parent8b0244cea25134a3c98313f4369d5f7374a345da (diff)
downloadcobbler-d3dfa949cba586ac3226486f763cba5140a90be7.tar.gz
cobbler-d3dfa949cba586ac3226486f763cba5140a90be7.tar.xz
cobbler-d3dfa949cba586ac3226486f763cba5140a90be7.zip
Remove dead code.
-rw-r--r--cobbler/action_sync.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/cobbler/action_sync.py b/cobbler/action_sync.py
index d091c8ee..2aeb1f6e 100644
--- a/cobbler/action_sync.py
+++ b/cobbler/action_sync.py
@@ -794,34 +794,3 @@ class BootSync:
print cmd
return sub_process.call(cmd, shell=True)
- # factoring out
-
- #def blend_options(self, is_for_kernel, list_of_opts):
- # """
- # Given a list of options, take the values used by the
- # first argument in the list unless overridden by those in the
- # second (or further on).
- # """
- # results = {}
- # buffer = ""
- # for optslist in list_of_opts:
- # for key in optslist:
- # results[key] = optslist[key]
-#
-# if is_for_kernel and self.settings.syslog_port != 0:
-# results["syslog"] = "%s:%s" % (self.settings.server, self.settings.syslog_port)
-#
-# return results
-
- # moved to utils.py
-
- #def hash_to_string(self, hash):
- # buffer = ""
- # for key in hash:
- # value = hash[key]
- # if value is None:
- # buffer = buffer + str(key) + " "
- # else:
- # buffer = buffer + str(key) + "=" + str(value) + " "
- # return buffer
-