summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG4
-rw-r--r--cobbler/action_check.py2
2 files changed, 2 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 777aae20..96b8ca00 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,8 +1,5 @@
Cobbler CHANGELOG
-- Mon Dec 22 2008 - 1.5.X
-- (FEAT) Batch editing of system objects -- power, profile, netboot, etc
-
- Mon Dec 19 2008 - 1.4.1
- (BUGF) Cobbler check looks for right httpd on SUSE
- (BUGF) post_install_network_config snippet had bash errors
@@ -10,6 +7,7 @@ Cobbler CHANGELOG
- (FEAT) have cobbler check mention when semanage rules should be applied
- (BUGF) fix an obscure xmlrpclib corner case where a string that looks like an int can't be served because xmlrpclib thinks it's an int. Applies to XMLRPC consumers only, not CobblerWeb or the cobbler CLI.
- (BUGF) fix external kickstart URLs (not templated) and per-system overrides.
+- (BUGF) fix 'cobbler check' code for SuSE services
- Fri Dec 19 2008 - 1.4
- (----) Stable release of 1.3 development branch
diff --git a/cobbler/action_check.py b/cobbler/action_check.py
index 1f59da06..3835c4ce 100644
--- a/cobbler/action_check.py
+++ b/cobbler/action_check.py
@@ -96,7 +96,7 @@ class BootCheck:
if notes != "":
notes = " (NOTE: %s)" % notes
rc = 0
- if self.checked_dist == "redhat":
+ if self.checked_dist == "redhat" or self.checked_dist == "suse":
if os.path.exists("/etc/rc.d/init.d/%s" % which):
rc = sub_process.call("/sbin/service %s status > /dev/null 2>/dev/null" % which, shell=True, close_fds=True)
if rc != 0: