summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2009-03-09 11:21:59 -0400
committerMichael DeHaan <mdehaan@redhat.com>2009-03-09 11:21:59 -0400
commitd278d86e8109a9c26241f80806bd9b54f3e387f7 (patch)
treead8ebafa5dff603c1971d9a5326328b8870ac347
parentbbb4a71b6fc7ceb4f7e6c394a0f4d7e4cfa0f4d1 (diff)
downloadcobbler-d278d86e8109a9c26241f80806bd9b54f3e387f7.tar.gz
cobbler-d278d86e8109a9c26241f80806bd9b54f3e387f7.tar.xz
cobbler-d278d86e8109a9c26241f80806bd9b54f3e387f7.zip
Some minor string changes for the check code.
-rw-r--r--cobbler/action_check.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cobbler/action_check.py b/cobbler/action_check.py
index 01bb42ec..151d0ef9 100644
--- a/cobbler/action_check.py
+++ b/cobbler/action_check.py
@@ -333,7 +333,7 @@ class BootCheck:
def check_tftpd_rules(self,status):
if not os.path.exists("/etc/tftpd.rules"):
- status.append(_("tftpd rules are missing. Microsoft Windows remote installations will not work correctly"))
+ status.append(_("tftpd rules are missing. Microsoft Windows remote (physical) installations will not work correctly"))
def check_dhcpd_conf(self,status):
"""
@@ -369,13 +369,13 @@ class BootCheck:
if os.path.exists("/etc/init.d/ris-linuxd"):
return True
else:
- status.append(_("ris-linux is not installed, Microsoft Windows remote installations will not function correctly"))
+ status.append(_("ris-linux was not found, Microsoft Windows remote (physical) installations will not function correctly unless installed"))
return False
def check_for_cabextract(self,status):
if not os.path.exists("/usr/bin/cabextract"):
- status.append(_("cabextract was not found, Microsoft Windows imports will not work correctly"))
+ status.append(_("cabextract was not found, Microsoft Windows imports (for physical installations) will not work correctly unless installed"))
def check_smb_shares(self,status):