home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / usr / lib / YaST2 / startup / YaST2.ssh < prev   
Text File  |  2006-11-29  |  1KB  |  46 lines

  1. #!/bin/sh
  2. #================
  3. # FILE          : YaST2.ssh
  4. #----------------
  5. # PROJECT       : YaST (Yet another Setup Tool v2)
  6. # COPYRIGHT     : (c) 2004 SUSE Linux AG, Germany. All rights reserved
  7. #               :
  8. # AUTHORS       : Steffen Winterfeldt <snwint@suse.de>
  9. #               . Arvin Schnell <arvin@suse.de>
  10. #               : Marcus Schaefer <ms@suse.de>
  11. #               :
  12. # BELONGS TO    : System installation and Administration
  13. #               :
  14. # DESCRIPTION   : This is the main script to restart the YaST2 installer
  15. #               : if we are within a ssh installation environment
  16. #               : This script is called manually
  17. #               :
  18. #               :
  19. # STATUS        : $Id: YaST2.ssh 20490 2004-12-03 14:11:24Z ms $
  20. #----------------
  21. #
  22. #========================================
  23. # call YaST2 if flag file exists
  24. #----------------------------------------
  25. if [ -f /var/lib/YaST2/runme_at_boot ];then
  26.     /usr/lib/YaST2/startup/YaST2.call installation continue
  27.     rm -fv /var/lib/YaST2/runme_at_boot
  28. else
  29.     exit 1
  30. fi
  31.  
  32. #========================================
  33. # boot into system
  34. #----------------------------------------
  35. cat <<-EOF
  36.     continue with booting ...
  37.  
  38.     You can login with the (new?) root password or the
  39.     new created user account in a few seconds ...
  40. EOF
  41.  
  42. #========================================
  43. # remove flag file
  44. #----------------------------------------
  45. rm -f /var/lib/YaST2/runme_at_boot
  46.