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_timezone.ycp
< prev
next >
Wrap
Text File
|
2006-11-29
|
450b
|
23 lines
/**
* Client for initial timezone setting (part of installation sequence)
* Author: Jiri Suchomel <jsuchome@suse.cz>
* $Id$
*/
{
import "GetInstArgs";
import "Mode";
import "Wizard";
include "timezone/dialogs.ycp";
map args = GetInstArgs::argmap();
if (args["first_run"]:"yes" != "no")
args["first_run"] = "yes";
if (Mode::mode () == "firstboot")
Wizard::HideAbortButton();
return TimezoneDialog (args);
}