diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-10-20 17:51:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-10-20 17:51:59 +0000 |
commit | 0002d4cb130e8f6965362237206bcaa4e3605ae2 (patch) | |
tree | cfc34c3e6074a71c640903477ce18b2923308905 | |
parent | 5c9557225e3f59342af6000c60447a5005b9d587 (diff) | |
download | drakx-0002d4cb130e8f6965362237206bcaa4e3605ae2.tar drakx-0002d4cb130e8f6965362237206bcaa4e3605ae2.tar.gz drakx-0002d4cb130e8f6965362237206bcaa4e3605ae2.tar.bz2 drakx-0002d4cb130e8f6965362237206bcaa4e3605ae2.tar.xz drakx-0002d4cb130e8f6965362237206bcaa4e3605ae2.zip |
install_bootloader should succeed otherwise it's an error
-rwxr-xr-x | rescue/partimage_whole_disk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/partimage_whole_disk b/rescue/partimage_whole_disk index bec02e78a..3649c70f1 100755 --- a/rescue/partimage_whole_disk +++ b/rescue/partimage_whole_disk @@ -214,7 +214,7 @@ sub rest_all { } "$::prefix/etc/lilo.conf"; } - run_program::run('install_bootloader', '--auto'); + run_or_die('install_bootloader', '--auto'); } sub lst_fields() { qw(device size fs_type saved) } |