X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2FValidateNodeInstall.py;h=ad74d089799795d6ee40c0ef95ffd37bfd5af700;hb=fecd90d602104e522e4247e24a74954e5563e1cd;hp=bda60b1d228323577450c54d19b7a4efafba33a5;hpb=ac33037abb3b028c7e57010d1e85216fe11ea6c1;p=bootmanager.git 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