summaryrefslogtreecommitdiffstats
path: root/cobbler/action_sync.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-09-21 18:34:43 -0400
committerJim Meyering <jim@meyering.net>2006-09-21 18:34:43 -0400
commit7100794427920b4d586e084612faf335f13761b4 (patch)
tree3464e84e915a0e75a6f8d28dc6f068ca856160c8 /cobbler/action_sync.py
parent8796d560fe0f8d6a5a3f65c1a30a8b6ccaddc40f (diff)
downloadthird_party-cobbler-7100794427920b4d586e084612faf335f13761b4.tar.gz
third_party-cobbler-7100794427920b4d586e084612faf335f13761b4.tar.xz
third_party-cobbler-7100794427920b4d586e084612faf335f13761b4.zip
kickstart line in file is not different between elilo and syslinux
Diffstat (limited to 'cobbler/action_sync.py')
-rw-r--r--cobbler/action_sync.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/cobbler/action_sync.py b/cobbler/action_sync.py
index 1fcbbb6..f8f403e 100644
--- a/cobbler/action_sync.py
+++ b/cobbler/action_sync.py
@@ -374,12 +374,7 @@ class BootSync:
if kickstart_path.startswith("/"):
pxe_fn = self.get_pxe_filename(system.name)
kickstart_path = "http://%s/cobbler/kickstarts_sys/%s/ks.cfg" % (self.settings.server, pxe_fn)
- if not is_ia64:
- # pxelinux tree
- nextline = nextline + " ks=%s" % kickstart_path
- else:
- # elilo thrown in root
- nextline = nextline + "\t\"append ks=%s %s\"" % (kickstart_path, kopts)
+ nextline = nextline + " ks=%s" % kickstart_path
self.tee(fd, nextline)
self.close_file(fd)
self.sync_log("--------------------------------")