File fix-cobbler-options-dict-parsing.patch of Package cobbler
Index: cobbler-2.6.6/koan/utils.py
===================================================================
--- cobbler-2.6.6.orig/koan/utils.py
+++ cobbler-2.6.6/koan/utils.py
@@ -211,7 +211,7 @@ def input_string_or_hash(options,delim=N
new_dict = {}
tokens = string.split(options, delim)
for t in tokens:
- tokens2 = string.split(t,"=")
+ tokens2 = string.split(t,"=", 1)
if len(tokens2) == 1:
# this is a singleton option, no value
key = tokens2[0]