summaryrefslogtreecommitdiffstats
path: root/cobbler
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-09-25 11:03:32 -0400
committerJim Meyering <jim@meyering.net>2006-09-25 11:03:32 -0400
commitf9c18fd3df9a84087f0695b070b681655064624a (patch)
tree5071b1d31684d9062e443e1ee7aae6817e1ecc4e /cobbler
parent3cd7f93ed2d2e68065a8e3d85f5ebe6de1158497 (diff)
downloadthird_party-cobbler-f9c18fd3df9a84087f0695b070b681655064624a.tar.gz
third_party-cobbler-f9c18fd3df9a84087f0695b070b681655064624a.tar.xz
third_party-cobbler-f9c18fd3df9a84087f0695b070b681655064624a.zip
Shorten "file not found" strings since name detection has been loosened.
Diffstat (limited to 'cobbler')
-rw-r--r--cobbler/cobbler_msg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cobbler/cobbler_msg.py b/cobbler/cobbler_msg.py
index 4ea4283..0860d5a 100644
--- a/cobbler/cobbler_msg.py
+++ b/cobbler/cobbler_msg.py
@@ -55,7 +55,7 @@ _msg_table = {
"no_distro" : "distro does not exist",
"no_profile" : "profile does not exist",
"no_kickstart" : "kickstart must be an absolute path, or an http://, ftp:// or nfs:// URL",
- "no_kernel" : "the kernel needs to be a directory containing a kernel, or a full path. Kernels must be named just 'vmlinuz' or in the form 'vmlinuz-AA.BB.CC-something'",
+ "no_kernel" : "cannot find kernel file"
"sync_kernel" : "the kernel (%s) for distro (%s) cannot be found and must be fixed",
"sync_initrd" : "the initrd (%s) for distro (%s) cannot be found and must be fixed",
"sync_mirror_ks" : "mirroring local kickstarts...",
@@ -66,7 +66,7 @@ _msg_table = {
"dryrun" : "dry run | %s",
"copying" : "copying file: %s to %s",
"removing" : "removing: %s",
- "no_initrd" : "the initrd needs to be a directory containing an initrd, or a full path. Initrds must be named just 'initrd.img' or in the form 'initrd-AA.BB.CC-something.img",
+ "no_initrd" : "cannot find initrd",
"exc_xen_name" : "invalid Xen name",
"exc_xen_file" : "invalid Xen file size",
"exc_xen_ram" : "invalid Xen RAM size",