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 / driver_update2_finish.ycp < prev    next >
Text File  |  2006-11-29  |  1KB  |  62 lines

  1. /**
  2.  * File:
  3.  *  driver_update2_finish.ycp
  4.  *
  5.  * Module:
  6.  *  Step of base installation finish
  7.  *
  8.  * Authors:
  9.  *  Jiri Srain <jsrain@suse.cz>
  10.  *
  11.  * $Id: driver_update2_finish.ycp 27936 2006-02-13 20:01:14Z olh $
  12.  *
  13.  */
  14.  
  15. {
  16.  
  17. textdomain "installation";
  18.  
  19. import "Vendor";
  20. import "Mode";
  21.  
  22. any ret = nil;
  23. string func = "";
  24. map param = $[];
  25.  
  26. /* Check arguments */
  27. if(size(WFM::Args()) > 0 && is(WFM::Args(0), string)) {
  28.     func = (string)WFM::Args(0);
  29.     if(size(WFM::Args()) > 1 && is(WFM::Args(1), map))
  30.     param = (map)WFM::Args(1);
  31. }
  32.  
  33. y2milestone ("starting driver_update2_finish");
  34. y2debug("func=%1", func);
  35. y2debug("param=%1", param);
  36.  
  37. if (func == "Info")
  38. {
  39.     return (any)$[
  40.     "steps" : 0,
  41.     "when" : [ `installation, `update, `autoinst ],
  42.     ];
  43. }
  44. else if (func == "Write")
  45. {
  46.     Vendor::DriverUpdate2 ();
  47.     if (WFM::Read (.local.size, "/usr/share/YaST2/clients/product_finish.ycp") > 0)
  48.     WFM::CallFunction ("product_finish", [Mode::update ()]);
  49. }
  50. else
  51. {
  52.     y2error ("unknown function: %1", func);
  53.     ret = nil;
  54. }
  55.  
  56. y2debug("ret=%1", ret);
  57. y2milestone("driver_update2_finish finished");
  58. return ret;
  59.  
  60.  
  61. } /* EOF */
  62.