summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cobbler.spec1
-rw-r--r--cobbler/action_check.py5
2 files changed, 5 insertions, 1 deletions
diff --git a/cobbler.spec b/cobbler.spec
index 4628eae..aed379a 100644
--- a/cobbler.spec
+++ b/cobbler.spec
@@ -159,6 +159,7 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT
* Fri Aug 31 2007 Michael DeHaan <mdehaan@redhat.com> - 0.6.2-1
- Upstream changes (see CHANGELOG)
+- removed syslinux as a requirement
* Thu Aug 30 2007 Michael DeHaan <mdehaan@redhat.com> - 0.6.1-2
- Upstream changes (see CHANGELOG)
diff --git a/cobbler/action_check.py b/cobbler/action_check.py
index 1dfecf9..93988a3 100644
--- a/cobbler/action_check.py
+++ b/cobbler/action_check.py
@@ -112,7 +112,10 @@ class BootCheck:
for loader in self.settings.bootloaders.keys():
filename = self.settings.bootloaders[loader]
if not os.path.exists(filename):
- status.append(_("missing 1 or more bootloader files listed in /var/lib/cobbler/settings"))
+ if filename.find("pxelinux") != -1:
+ status.append(_("syslinux should be installed but is not, expecting to find something at %s" % filename))
+ else:
+ status.append(_("bootloader missing: %s" % filename))
return
def check_tftpd_bin(self,status):