summaryrefslogtreecommitdiffstats
path: root/cobbler
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2007-08-06 16:46:17 -0400
committerMichael DeHaan <mdehaan@redhat.com>2007-08-06 16:46:17 -0400
commitb3b6ecdce02a02807f27dd9b3b9e1950c35cbd70 (patch)
tree54019ff9c972911f878404d0c056b49ad94ad180 /cobbler
parenta2127ce1c5b7ed06662893eb93753b589a8740be (diff)
downloadthird_party-cobbler-b3b6ecdce02a02807f27dd9b3b9e1950c35cbd70.tar.gz
third_party-cobbler-b3b6ecdce02a02807f27dd9b3b9e1950c35cbd70.tar.xz
third_party-cobbler-b3b6ecdce02a02807f27dd9b3b9e1950c35cbd70.zip
Add the non-useful --url line even for NFS, as koan will be looking
for it and needs that data to tell virtinst what to do.
Diffstat (limited to 'cobbler')
-rw-r--r--cobbler/action_sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cobbler/action_sync.py b/cobbler/action_sync.py
index 2fc767b..620fe80 100644
--- a/cobbler/action_sync.py
+++ b/cobbler/action_sync.py
@@ -503,7 +503,7 @@ class BootSync:
line = "nfs --server %s --dir %s" % (server,dir)
# but put the URL part back in so koan can still see
# what the original value was
- line = line + "\n" + "#url --url %s" % metadata["tree"]
+ line = line + "\n" + "#url --url=%s" % metadata["tree"]
newdata = newdata + line + "\n"
data = newdata