From fecd90d602104e522e4247e24a74954e5563e1cd Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Thu, 18 Dec 2008 09:47:51 +0000 Subject: [PATCH] a bit more explicit/helpful error message --- source/steps/ValidateNodeInstall.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/source/steps/ValidateNodeInstall.py b/source/steps/ValidateNodeInstall.py index bda60b1..ad74d08 100644 --- a/source/steps/ValidateNodeInstall.py +++ b/source/steps/ValidateNodeInstall.py @@ -102,12 +102,14 @@ def Run( vars, log ): vars['ROOT_MOUNTED']= 1 - # check if the base kernel is installed + # check if the base kernel is installed + # these 2 links are created by our kernel's post-install scriplet + log.write("Checking for a custom kernel\n") try: os.stat("%s/boot/kernel-boot" % SYSIMG_PATH) os.stat("%s/boot/initrd-boot" % SYSIMG_PATH) except OSError, e: - log.write( "FATAL: Couldn't locate base kernel.\n") + log.write( "Couldn't locate base kernel (you might be using the stock kernel).\n") return 0 # check if the model specified kernel is installed @@ -138,6 +140,6 @@ def Run( vars, log ): log.write( "Unable to write out /etc/planetlab/node_id\n" ) return 0 - log.write( "Everything appears to be ok\n" ) + log.write( "Node installation appears to be ok\n" ) return 1 -- 2.43.0