home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
boot
/
i386
/
root
/
usr
/
share
/
YaST2
/
clients
/
inst_repair.ycp
< prev
next >
Wrap
Text File
|
2006-11-29
|
800b
|
38 lines
/**
* File:
* inst_repair.ycp
*
* Module:
* YaST2 system repair tool - automatic error detection and repair tool for Linux.
*
* Summary:
* This file provides the framework of the YaST2 system repair tool.
* It contains the main function that starts the scan and repair process.
*
* Author:
* Johannes Buchhold <jbuch@suse.de>
*
* $Id: inst_repair.ycp 20036 2004-10-29 07:06:28Z jsuchome $
*/
{
import "Linuxrc";
import "Mode";
import "Stage";
import "Wizard";
Mode::SetMode ("update");
Mode::SetMode ("installation");
Stage::Set ("initial");
y2milestone( "Starting yast repair tool" );
Wizard::OpenNextBackDialog();
any ret = WFM::CallFunction ("repair");
Linuxrc::WriteYaSTInf($["Root" : "reboot", "RebootMsg" : "0"]);
return ret;
}