Rough chroot call failure check

This commit is contained in:
Aurélien Gâteau 2014-08-01 16:59:24 +02:00
parent 271b0945c9
commit d175d199eb

View File

@ -23,8 +23,10 @@ import libcalamares
def install_grub(boot_loader):
install_path = boot_loader["installPath"]
libcalamares.utils.chroot_call(["grub-install", install_path])
libcalamares.utils.chroot_call(["grub-mkconfig", "-o", "/boot/grub/grub.cfg"])
ret = libcalamares.utils.chroot_call(["grub-install", install_path])
assert ret == 0
ret = libcalamares.utils.chroot_call(["grub-mkconfig", "-o", "/boot/grub/grub.cfg"])
assert ret == 0
def run():