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

  1. /**
  2.  * File:
  3.  *  ssh_settings_finish.ycp
  4.  *
  5.  * Module:
  6.  *  Step of base installation finish
  7.  *
  8.  * Authors:
  9.  *  Jiri Srain <jsrain@suse.cz>
  10.  *
  11.  * $Id: ssh_settings_finish.ycp 27936 2006-02-13 20:01:14Z olh $
  12.  *
  13.  */
  14.  
  15. {
  16.  
  17. textdomain "installation";
  18.  
  19. import "Linuxrc";
  20. import "Installation";
  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 ssh_settings_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" : _("Copying SSH settings to installed system..."),
  43.     "when" : Linuxrc::usessh () ? [ `installation, `autoinst ] : [],
  44.     ];
  45. }
  46. else if (func == "Write")
  47. {
  48.     WFM::Execute (.local.bash, "umask 077 ; awk  -F : ' /^root:/ { print $1\":\"$2 }' < /etc/shadow > "
  49.                 + Installation::destdir + "/tmp/rootpwd.txt");
  50.     SCR::Execute (.target.bash, "/bin/cat /tmp/rootpwd.txt | /usr/sbin/chpasswd -e ; rm -fv /tmp/rootpwd.txt");
  51.     WFM::Execute (.local.bash, "/bin/cp -a /etc/ssh/*key* " + Installation::destdir + "/etc/ssh/");
  52. }
  53. else
  54. {
  55.     y2error ("unknown function: %1", func);
  56.     ret = nil;
  57. }
  58.  
  59. y2debug("ret=%1", ret);
  60. y2milestone("ssh_settings_finish finished");
  61. return ret;
  62.  
  63.  
  64. } /* EOF */
  65.