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

  1. /**
  2.  * File:
  3.  *  pkg_finish.ycp
  4.  *
  5.  * Module:
  6.  *  Step of base installation finish
  7.  *
  8.  * Authors:
  9.  *  Jiri Srain <jsrain@suse.cz>
  10.  *
  11.  * $Id: pkg_finish.ycp 33515 2006-10-19 11:04:46Z lslezak $
  12.  *
  13.  */
  14.  
  15. {
  16.  
  17. textdomain "packager";
  18.  
  19. import "Installation";
  20. import "String";
  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 pkg_finish");
  34. y2debug("func=%1", func);
  35. y2debug("param=%1", param);
  36.  
  37. if (func == "Info")
  38. {
  39.     return (any)$[
  40.     "steps" : 1,
  41.     // progress step title
  42.     "title" : _("Saving package manager configuration..."),
  43.     "when" : [ `installation, `update, `autoinst ],
  44.     ];
  45. }
  46. else if (func == "Write")
  47. {
  48.     Pkg::SourceCacheCopyTo (Installation::destdir);
  49.  
  50.     // disable all sources and finish target
  51.     Pkg::SourceFinishAll ();
  52.     Pkg::TargetFinish();
  53.  
  54.     // copy list of failed packages to installed system
  55.     WFM::Execute (.local.bash, sformat (
  56.     "test -f %1 && /bin/cp -a %1 '%2%1'",
  57.     "/var/lib/YaST2/failed_packages",
  58.     String::Quote (Installation::destdir)));
  59. }
  60. else
  61. {
  62.     y2error ("unknown function: %1", func);
  63.     ret = nil;
  64. }
  65.  
  66. y2debug("ret=%1", ret);
  67. y2milestone("pkg_finish finished");
  68. return ret;
  69.  
  70.  
  71. } /* EOF */
  72.