X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2FValidateNodeInstall.py;h=5f9784705af1ceb3df6c0adc076d781da87b8ac3;hb=9807dbe301e4e078c07bff4df81ff33811a5cca7;hp=85dcf5efc2c4849dbe3921219eaf9d71fd5709f0;hpb=e852304a6790c784556eb6cba41bff935037b7b0;p=bootmanager.git diff --git a/source/steps/ValidateNodeInstall.py b/source/steps/ValidateNodeInstall.py index 85dcf5e..5f97847 100644 --- a/source/steps/ValidateNodeInstall.py +++ b/source/steps/ValidateNodeInstall.py @@ -96,7 +96,7 @@ def Run( vars, log ): try: # then attempt to mount them log.write( "mounting root file system\n" ) - utils.sysexec("mount -t ext2 %s %s" % (PARTITIONS["root"],SYSIMG_PATH),log) + utils.sysexec("mount -t ext3 %s %s" % (PARTITIONS["root"],SYSIMG_PATH),log) except BootManagerException, e: log.write( "BootManagerException during mount of /root: %s\n" % str(e) ) return -2 @@ -114,7 +114,7 @@ def Run( vars, log ): VSERVERS_PATH = "%s/vservers" % SYSIMG_PATH utils.makedirs(VSERVERS_PATH) log.write( "mounting vserver partition in root file system\n" ) - utils.sysexec("mount -t ext2 %s %s" % (PARTITIONS["vservers"], VSERVERS_PATH), log) + utils.sysexec("mount -t ext3 %s %s" % (PARTITIONS["vservers"], VSERVERS_PATH), log) except BootManagerException, e: log.write( "BootManagerException during mount of /vservers: %s\n" % str(e) ) return -2